@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 515 B
TypeScript
import { IsForEnum } from '../IsForEnum';
/** Representation of the domain custom fields */
export interface CustomFields {
/** Domain name audience */
audience?: string;
/** Auth Info */
authInfo?: string;
/** Purposes of the domain */
isFor?: IsForEnum[];
/** Domain name other purpose */
otherPurpose?: string;
/** Reason of the purchase of this domain */
reason?: string;
/** Represented company */
represent?: string;
}
//# sourceMappingURL=CustomFields.d.ts.map