/*
* authentik
*
* Making authentication simple.
*
* The version of the OpenAPI document: 2026.2.3
* Contact: hello@goauthentik.io
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// AgentAuthenticationResponse : Base serializer class which doesn't implement create/update methods
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct AgentAuthenticationResponse {
#[serde(rename = "url")]
pub url: String,
}
impl AgentAuthenticationResponse {
/// Base serializer class which doesn't implement create/update methods
pub fn new(url: String) -> AgentAuthenticationResponse {
AgentAuthenticationResponse { url }
}
}