/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface CreateCustomDomainRequest */ export interface CreateCustomDomainRequest { /** * The domain name to register. It must be a valid DNS and not already registered in Linkbreakers. Subdomains are also supported. * @type {string} * @memberof CreateCustomDomainRequest */ name?: string; } /** * Check if a given object implements the CreateCustomDomainRequest interface. */ export declare function instanceOfCreateCustomDomainRequest(value: object): value is CreateCustomDomainRequest; export declare function CreateCustomDomainRequestFromJSON(json: any): CreateCustomDomainRequest; export declare function CreateCustomDomainRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCustomDomainRequest; export declare function CreateCustomDomainRequestToJSON(json: any): CreateCustomDomainRequest; export declare function CreateCustomDomainRequestToJSONTyped(value?: CreateCustomDomainRequest | null, ignoreDiscriminator?: boolean): any;