UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

11 lines 859 B
import { ContactOwner } from './ContactOwner'; /** Admin, tech and owner contacts for a domain order. admin and tech are OVH NIC handles (e.g. xxxxx-ovh); owner is an OVH contact resource referenced by its numeric id (see /me/contact), not a NIC handle. Billing is forced to the customer code by the server and is not exposed. */ export interface Contacts { /** Administrative contact, given as an OVH NIC handle (e.g. xxxxx-ovh). Defaults to the calling customer's NIC if omitted. */ admin?: string; /** Owner contact of the domain. Unlike admin/tech which are NIC handles, the owner is an OVH contact resource referenced by its numeric id. */ owner?: ContactOwner; /** Technical contact, given as an OVH NIC handle (e.g. xxxxx-ovh). Defaults to the admin contact if omitted. */ tech?: string; } //# sourceMappingURL=Contacts.d.ts.map