bitwarden_api_api/models/
organization_api_key_information.rs

1/*
2 * Bitwarden Internal API
3 *
4 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
5 *
6 * The version of the OpenAPI document: latest
7 *
8 * Generated by: https://openapi-generator.tech
9 */
10
11use serde::{Deserialize, Serialize};
12
13use crate::models;
14
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct OrganizationApiKeyInformation {
17    #[serde(rename = "object", skip_serializing_if = "Option::is_none")]
18    pub object: Option<String>,
19    #[serde(rename = "keyType", skip_serializing_if = "Option::is_none")]
20    pub key_type: Option<models::OrganizationApiKeyType>,
21    #[serde(rename = "revisionDate", skip_serializing_if = "Option::is_none")]
22    pub revision_date: Option<String>,
23}
24
25impl OrganizationApiKeyInformation {
26    pub fn new() -> OrganizationApiKeyInformation {
27        OrganizationApiKeyInformation {
28            object: None,
29            key_type: None,
30            revision_date: None,
31        }
32    }
33}