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