import type { CustomHostnameValidationResponse } from './CustomHostnameValidationResponse'; /** * @type CustomHostnameValidationEnvelope: * * @property data: * */ export type CustomHostnameValidationEnvelope = { data: CustomHostnameValidationResponse; } & { [key: string]: any; };