bitwarden-api-api 1.0.0

Api bindings for the Bitwarden API.
Documentation
/*
 * Bitwarden Internal API
 *
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: latest
 *
 * Generated by: https://openapi-generator.tech
 */

use serde::{Deserialize, Serialize};

use crate::models;

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ProtectedDeviceResponseModel {
    #[serde(rename = "object", skip_serializing_if = "Option::is_none")]
    pub object: Option<String>,
    #[serde(rename = "id", skip_serializing_if = "Option::is_none")]
    pub id: Option<uuid::Uuid>,
    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
    #[serde(rename = "type", skip_serializing_if = "Option::is_none")]
    pub r#type: Option<models::DeviceType>,
    #[serde(rename = "identifier", skip_serializing_if = "Option::is_none")]
    pub identifier: Option<String>,
    #[serde(rename = "creationDate", skip_serializing_if = "Option::is_none")]
    pub creation_date: Option<String>,
    #[serde(rename = "encryptedUserKey", skip_serializing_if = "Option::is_none")]
    pub encrypted_user_key: Option<String>,
    #[serde(rename = "encryptedPublicKey", skip_serializing_if = "Option::is_none")]
    pub encrypted_public_key: Option<String>,
}

impl ProtectedDeviceResponseModel {
    pub fn new() -> ProtectedDeviceResponseModel {
        ProtectedDeviceResponseModel {
            object: None,
            id: None,
            name: None,
            r#type: None,
            identifier: None,
            creation_date: None,
            encrypted_user_key: None,
            encrypted_public_key: None,
        }
    }
}