authentik_client/models/
plex_authentication_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/// PlexAuthenticationChallengeResponseRequest : Pseudo class for plex response
15#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
16pub struct PlexAuthenticationChallengeResponseRequest {
17    #[serde(rename = "component", skip_serializing_if = "Option::is_none")]
18    pub component: Option<String>,
19}
20
21impl PlexAuthenticationChallengeResponseRequest {
22    /// Pseudo class for plex response
23    pub fn new() -> PlexAuthenticationChallengeResponseRequest {
24        PlexAuthenticationChallengeResponseRequest { component: None }
25    }
26}