authentik-rust 0.0.1

Making authentication simple.
Documentation
/*
 * 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;

/// PromptChallenge : Initial challenge being sent, define fields
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct PromptChallenge {
    #[serde(rename = "type")]
    pub r#type: models::ChallengeChoices,
    #[serde(rename = "flow_info", skip_serializing_if = "Option::is_none")]
    pub flow_info: Option<Box<models::ContextualFlowInfo>>,
    #[serde(rename = "component", skip_serializing_if = "Option::is_none")]
    pub component: Option<String>,
    #[serde(rename = "response_errors", skip_serializing_if = "Option::is_none")]
    pub response_errors: Option<std::collections::HashMap<String, Vec<models::ErrorDetail>>>,
    #[serde(rename = "fields")]
    pub fields: Vec<models::StagePrompt>,
}

impl PromptChallenge {
    /// Initial challenge being sent, define fields
    pub fn new(r#type: models::ChallengeChoices, fields: Vec<models::StagePrompt>) -> PromptChallenge {
        PromptChallenge {
            r#type,
            flow_info: None,
            component: None,
            response_errors: None,
            fields,
        }
    }
}