authentik_client/models/
authenticator_email_challenge_response_request.rs

1/*
2 * authentik
3 *
4 * Making authentication simple.
5 *
6 * The version of the OpenAPI document: 2025.8.4
7 * Contact: hello@goauthentik.io
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14/// AuthenticatorEmailChallengeResponseRequest : Authenticator Email Challenge response, device is set by get_response_instance
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct AuthenticatorEmailChallengeResponseRequest {
17    #[serde(rename = "component", skip_serializing_if = "Option::is_none")]
18    pub component: Option<String>,
19    #[serde(rename = "code", skip_serializing_if = "Option::is_none")]
20    pub code: Option<i32>,
21    #[serde(rename = "email", skip_serializing_if = "Option::is_none")]
22    pub email: Option<String>,
23}
24
25impl AuthenticatorEmailChallengeResponseRequest {
26    /// Authenticator Email Challenge response, device is set by get_response_instance
27    pub fn new() -> AuthenticatorEmailChallengeResponseRequest {
28        AuthenticatorEmailChallengeResponseRequest {
29            component: None,
30            code: None,
31            email: None,
32        }
33    }
34}