Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ContactSettings

import type { ContactSettings } from "https://googleapis.deno.dev/v1/domains:v1.ts";

Defines the contact information associated with a Registration. ICANN requires all domain names to have associated contact information. The registrant_contact is considered the domain's legal owner, and often the other contacts are identical.

interface ContactSettings {
adminContact?: Contact;
privacy?:
| "CONTACT_PRIVACY_UNSPECIFIED"
| "PUBLIC_CONTACT_DATA"
| "PRIVATE_CONTACT_DATA"
| "REDACTED_CONTACT_DATA";
registrantContact?: Contact;
technicalContact?: Contact;
}

§Properties

§
adminContact?: Contact
[src]

Required. The administrative contact for the Registration.

§
privacy?: "CONTACT_PRIVACY_UNSPECIFIED" | "PUBLIC_CONTACT_DATA" | "PRIVATE_CONTACT_DATA" | "REDACTED_CONTACT_DATA"
[src]

Required. Privacy setting for the contacts associated with the Registration.

§
registrantContact?: Contact
[src]

Required. The registrant contact for the Registration. Caution: Anyone with access to this email address, phone number, and/or postal address can take control of the domain. Warning: For new Registrations, the registrant receives an email confirmation that they must complete within 15 days to avoid domain suspension.

§
technicalContact?: Contact
[src]

Required. The technical contact for the Registration.