linkbreakers 1.46.14

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

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

#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ListCustomDomainsResponse {
    #[serde(rename = "customDomains", skip_serializing_if = "Option::is_none")]
    pub custom_domains: Option<Vec<models::CustomDomain>>,
}

impl ListCustomDomainsResponse {
    pub fn new() -> ListCustomDomainsResponse {
        ListCustomDomainsResponse {
            custom_domains: None,
        }
    }
}