linkbreakers 1.87.6

Official Rust SDK for the Linkbreakers API
Documentation
/*
 * Linkbreakers API
 *
 * This is a documentation of all the APIs of Linkbreakers
 *
 * The version of the OpenAPI document: 1.87.6
 * 
 * Generated by: https://openapi-generator.tech
 */

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct GetLinkResponse {
    #[serde(rename = "link", skip_serializing_if = "Option::is_none")]
    pub link: Option<Box<models::Link>>,
}

impl GetLinkResponse {
    pub fn new() -> GetLinkResponse {
        GetLinkResponse {
            link: None,
        }
    }
}