/** * 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 GetCustomDomainResponse */ export interface GetCustomDomainResponse { /** * * @type {CustomDomain} * @memberof GetCustomDomainResponse */ customDomain?: CustomDomain; } /** * Check if a given object implements the GetCustomDomainResponse interface. */ export declare function instanceOfGetCustomDomainResponse(value: object): value is GetCustomDomainResponse; export declare function GetCustomDomainResponseFromJSON(json: any): GetCustomDomainResponse; export declare function GetCustomDomainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetCustomDomainResponse; export declare function GetCustomDomainResponseToJSON(json: any): GetCustomDomainResponse; export declare function GetCustomDomainResponseToJSONTyped(value?: GetCustomDomainResponse | null, ignoreDiscriminator?: boolean): any;