/** * 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 { ValidationInstructionsCustomDomainResponseValidation } from './ValidationInstructionsCustomDomainResponseValidation'; /** * * @export * @interface ValidationInstructionsCustomDomainResponse */ export interface ValidationInstructionsCustomDomainResponse { /** * * @type {Array} * @memberof ValidationInstructionsCustomDomainResponse */ validations?: Array; } /** * Check if a given object implements the ValidationInstructionsCustomDomainResponse interface. */ export declare function instanceOfValidationInstructionsCustomDomainResponse(value: object): value is ValidationInstructionsCustomDomainResponse; export declare function ValidationInstructionsCustomDomainResponseFromJSON(json: any): ValidationInstructionsCustomDomainResponse; export declare function ValidationInstructionsCustomDomainResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidationInstructionsCustomDomainResponse; export declare function ValidationInstructionsCustomDomainResponseToJSON(json: any): ValidationInstructionsCustomDomainResponse; export declare function ValidationInstructionsCustomDomainResponseToJSONTyped(value?: ValidationInstructionsCustomDomainResponse | null, ignoreDiscriminator?: boolean): any;