/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { CustomHostnameVerificationType } from './CustomHostnameVerificationType'; import { DnsRecordType } from './DnsRecordType'; /** * * @export * @interface CustomHostnameVerificationRecord */ export interface CustomHostnameVerificationRecord { /** * * @type {DnsRecordType} * @memberof CustomHostnameVerificationRecord */ dnsRecordType: DnsRecordType; /** * * @type {CustomHostnameVerificationType} * @memberof CustomHostnameVerificationRecord */ verificationType: CustomHostnameVerificationType; /** * DNS record name (host) to create for verification * @type {string} * @memberof CustomHostnameVerificationRecord */ name: string; /** * DNS record value to set for verification * @type {string} * @memberof CustomHostnameVerificationRecord */ value: string; } export declare function CustomHostnameVerificationRecordFromJSON(json: any): CustomHostnameVerificationRecord; export declare function CustomHostnameVerificationRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomHostnameVerificationRecord; export declare function CustomHostnameVerificationRecordToJSON(value?: CustomHostnameVerificationRecord | null): any;