/** * 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 UpdateCustomDomainResponse */ export interface UpdateCustomDomainResponse { /** * * @type {CustomDomain} * @memberof UpdateCustomDomainResponse */ customDomain?: CustomDomain; } /** * Check if a given object implements the UpdateCustomDomainResponse interface. */ export declare function instanceOfUpdateCustomDomainResponse(value: object): value is UpdateCustomDomainResponse; export declare function UpdateCustomDomainResponseFromJSON(json: any): UpdateCustomDomainResponse; export declare function UpdateCustomDomainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateCustomDomainResponse; export declare function UpdateCustomDomainResponseToJSON(json: any): UpdateCustomDomainResponse; export declare function UpdateCustomDomainResponseToJSONTyped(value?: UpdateCustomDomainResponse | null, ignoreDiscriminator?: boolean): any;