/** * 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 ListCustomDomainsResponse */ export interface ListCustomDomainsResponse { /** * * @type {Array} * @memberof ListCustomDomainsResponse */ customDomains?: Array; } /** * Check if a given object implements the ListCustomDomainsResponse interface. */ export declare function instanceOfListCustomDomainsResponse(value: object): value is ListCustomDomainsResponse; export declare function ListCustomDomainsResponseFromJSON(json: any): ListCustomDomainsResponse; export declare function ListCustomDomainsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListCustomDomainsResponse; export declare function ListCustomDomainsResponseToJSON(json: any): ListCustomDomainsResponse; export declare function ListCustomDomainsResponseToJSONTyped(value?: ListCustomDomainsResponse | null, ignoreDiscriminator?: boolean): any;