bitwarden_api_api/models/
two_factor_authenticator_disable_request_model.rsuse serde::{Deserialize, Serialize};
use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct TwoFactorAuthenticatorDisableRequestModel {
#[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 = "type")]
pub r#type: models::TwoFactorProviderType,
#[serde(rename = "userVerificationToken")]
pub user_verification_token: String,
#[serde(rename = "key")]
pub key: String,
}
impl TwoFactorAuthenticatorDisableRequestModel {
pub fn new(
r#type: models::TwoFactorProviderType,
user_verification_token: String,
key: String,
) -> TwoFactorAuthenticatorDisableRequestModel {
TwoFactorAuthenticatorDisableRequestModel {
master_password_hash: None,
otp: None,
auth_request_access_code: None,
secret: None,
r#type,
user_verification_token,
key,
}
}
}