@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
17 lines • 469 B
TypeScript
import { IsForEnum } from './IsForEnum';
/** A domain data */
export interface Data {
/** 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=Data.d.ts.map