/** * @type CustomHostnameValidationResponse: Custom hostname validation information. * * @property customHostnameId: Identifier generated by the CDN provider for the custom hostname. * - **Pattern:** /^.*$/ * * @property customHostname: Name of the custom hostname * - **Pattern:** /^.*$/ * * @property customHostnameVerificationTXTName: Custom hostname verification txt name. * - **Pattern:** /^.*$/ * * @property customHostnameVerificationTXTValue: Custom hostname verification txt value. * - **Pattern:** /^.*$/ * * @property customHostnameStatus: Current status of the custom hostname. * */ export type CustomHostnameValidationResponse = { customHostnameId: string; customHostname: string; customHostnameVerificationTXTName: string; customHostnameVerificationTXTValue: string; customHostnameStatus: CustomHostnameValidationResponseCustomHostnameStatusEnum; } & { [key: string]: any; }; export type CustomHostnameValidationResponseCustomHostnameStatusEnum = 'PENDING' | 'ACTIVE' | 'MOVED' | 'DELETED';