authentik_rust/models/
authenticator_static_challenge_response_request.rs1use crate::models;
12
13#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct AuthenticatorStaticChallengeResponseRequest {
16 #[serde(rename = "component", skip_serializing_if = "Option::is_none")]
17 pub component: Option<String>,
18}
19
20impl AuthenticatorStaticChallengeResponseRequest {
21 pub fn new() -> AuthenticatorStaticChallengeResponseRequest {
23 AuthenticatorStaticChallengeResponseRequest {
24 component: None,
25 }
26 }
27}
28