/*
* authentik
*
* Making authentication simple.
*
* The version of the OpenAPI document: 2024.2.1
* Contact: hello@goauthentik.io
* Generated by: https://openapi-generator.tech
*/
use crate::models;
/// AuthenticatorTotpChallengeResponseRequest : TOTP Challenge response, device is set by get_response_instance
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct AuthenticatorTotpChallengeResponseRequest {
#[serde(rename = "component", skip_serializing_if = "Option::is_none")]
pub component: Option<String>,
#[serde(rename = "code")]
pub code: i32,
}
impl AuthenticatorTotpChallengeResponseRequest {
/// TOTP Challenge response, device is set by get_response_instance
pub fn new(code: i32) -> AuthenticatorTotpChallengeResponseRequest {
AuthenticatorTotpChallengeResponseRequest {
component: None,
code,
}
}
}