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 UpdateTwoFactorYubicoOtpRequestModel {
    #[serde(rename = "masterPasswordHash", skip_serializing_if = "Option::is_none")]
    pub master_password_hash: Option<String>,
    #[serde(rename = "otp", skip_serializing_if = "Option::is_none")]
    pub otp: Option<String>,
    #[serde(
        rename = "authRequestAccessCode",
        skip_serializing_if = "Option::is_none"
    )]
    pub auth_request_access_code: Option<String>,
    #[serde(rename = "secret", skip_serializing_if = "Option::is_none")]
    pub secret: Option<String>,
    #[serde(rename = "key1", skip_serializing_if = "Option::is_none")]
    pub key1: Option<String>,
    #[serde(rename = "key2", skip_serializing_if = "Option::is_none")]
    pub key2: Option<String>,
    #[serde(rename = "key3", skip_serializing_if = "Option::is_none")]
    pub key3: Option<String>,
    #[serde(rename = "key4", skip_serializing_if = "Option::is_none")]
    pub key4: Option<String>,
    #[serde(rename = "key5", skip_serializing_if = "Option::is_none")]
    pub key5: Option<String>,
    #[serde(rename = "nfc")]
    pub nfc: bool,
}

impl UpdateTwoFactorYubicoOtpRequestModel {
    pub fn new(nfc: bool) -> UpdateTwoFactorYubicoOtpRequestModel {
        UpdateTwoFactorYubicoOtpRequestModel {
            master_password_hash: None,
            otp: None,
            auth_request_access_code: None,
            secret: None,
            key1: None,
            key2: None,
            key3: None,
            key4: None,
            key5: None,
            nfc,
        }
    }
}