/** * 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. */ import type { CustomDomain } from './CustomDomain'; /** * * @export * @interface CreateCustomDomainResponse */ export interface CreateCustomDomainResponse { /** * * @type {CustomDomain} * @memberof CreateCustomDomainResponse */ customDomain?: CustomDomain; } /** * Check if a given object implements the CreateCustomDomainResponse interface. */ export declare function instanceOfCreateCustomDomainResponse(value: object): value is CreateCustomDomainResponse; export declare function CreateCustomDomainResponseFromJSON(json: any): CreateCustomDomainResponse; export declare function CreateCustomDomainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCustomDomainResponse; export declare function CreateCustomDomainResponseToJSON(json: any): CreateCustomDomainResponse; export declare function CreateCustomDomainResponseToJSONTyped(value?: CreateCustomDomainResponse | null, ignoreDiscriminator?: boolean): any;