/*
* Linkbreakers API
*
* This is a documentation of all the APIs of Linkbreakers
*
* The version of the OpenAPI document: 1.81.4
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct CheckCustomDomainResponse {
#[serde(rename = "customDomain", skip_serializing_if = "Option::is_none")]
pub custom_domain: Option<Box<models::CustomDomain>>,
}
impl CheckCustomDomainResponse {
pub fn new() -> CheckCustomDomainResponse {
CheckCustomDomainResponse {
custom_domain: None,
}
}
}