/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.46.1
*
* 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,
}
}
}