/** A contract (terms) the customer subscribes to when placing a domain order */
export interface Contract {
    /** Name of the contract (e.g. registration terms, general conditions of service) */
    name: string;
    /** URL to the contract terms document (PDF) */
    url: string;
}
//# sourceMappingURL=Contract.d.ts.map