/** * 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 CheckCustomDomainResponse */ export interface CheckCustomDomainResponse { /** * * @type {CustomDomain} * @memberof CheckCustomDomainResponse */ customDomain?: CustomDomain; } /** * Check if a given object implements the CheckCustomDomainResponse interface. */ export declare function instanceOfCheckCustomDomainResponse(value: object): value is CheckCustomDomainResponse; export declare function CheckCustomDomainResponseFromJSON(json: any): CheckCustomDomainResponse; export declare function CheckCustomDomainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CheckCustomDomainResponse; export declare function CheckCustomDomainResponseToJSON(json: any): CheckCustomDomainResponse; export declare function CheckCustomDomainResponseToJSONTyped(value?: CheckCustomDomainResponse | null, ignoreDiscriminator?: boolean): any;