authentik-client 2026.5.0-rc2

Making authentication simple.
Documentation
/*
 * authentik
 *
 * Making authentication simple.
 *
 * The version of the OpenAPI document: 2026.5.0-rc2
 * Contact: hello@goauthentik.io
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// RedirectUri : A single allowed redirect URI entry
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct RedirectUri {
    #[serde(rename = "matching_mode")]
    pub matching_mode: models::MatchingModeEnum,
    #[serde(rename = "url")]
    pub url: String,
    #[serde(rename = "redirect_uri_type", skip_serializing_if = "Option::is_none")]
    pub redirect_uri_type: Option<models::RedirectUriTypeEnum>,
}

impl RedirectUri {
    /// A single allowed redirect URI entry
    pub fn new(matching_mode: models::MatchingModeEnum, url: String) -> RedirectUri {
        RedirectUri {
            matching_mode,
            url,
            redirect_uri_type: None,
        }
    }
}