linkbreakers 1.50.0

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.50.0
 * 
 * Generated by: https://openapi-generator.tech
 */

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CreateCustomDomainRequest {
    /// The domain name to register. It must be a valid DNS and not already registered in Linkbreakers. Subdomains are also supported.
    #[serde(rename = "name", skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,
}

impl CreateCustomDomainRequest {
    pub fn new() -> CreateCustomDomainRequest {
        CreateCustomDomainRequest {
            name: None,
        }
    }
}