/*
* authentik
*
* Making authentication simple.
*
* The version of the OpenAPI document: 2024.12.2
* Contact: hello@goauthentik.io
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// Link : Returns a single link
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct Link {
#[serde(rename = "link")]
pub link: String,
}
impl Link {
/// Returns a single link
pub fn new(link: String) -> Link {
Link { link }
}
}