bitwarden-api-api 3.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 WebAuthnPrfDecryptionOption {
    #[serde(
        rename = "encryptedPrivateKey",
        alias = "EncryptedPrivateKey",
        skip_serializing_if = "Option::is_none"
    )]
    pub encrypted_private_key: Option<String>,
    #[serde(
        rename = "encryptedUserKey",
        alias = "EncryptedUserKey",
        skip_serializing_if = "Option::is_none"
    )]
    pub encrypted_user_key: Option<String>,
    #[serde(
        rename = "credentialId",
        alias = "CredentialId",
        skip_serializing_if = "Option::is_none"
    )]
    pub credential_id: Option<String>,
    #[serde(
        rename = "transports",
        alias = "Transports",
        skip_serializing_if = "Option::is_none"
    )]
    pub transports: Option<Vec<String>>,
}

impl WebAuthnPrfDecryptionOption {
    pub fn new() -> WebAuthnPrfDecryptionOption {
        WebAuthnPrfDecryptionOption {
            encrypted_private_key: None,
            encrypted_user_key: None,
            credential_id: None,
            transports: None,
        }
    }
}