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

ContactDetail

import type { ContactDetail } from "https://aws-api.deno.dev/v0.4/services/route53domains.ts?docs=full";

ContactDetail includes the following elements.

interface ContactDetail {
AddressLine1?: string | null;
AddressLine2?: string | null;
City?: string | null;
ContactType?: ContactType | null;
CountryCode?: CountryCode | null;
Email?: string | null;
ExtraParams?: ExtraParam[] | null;
Fax?: string | null;
FirstName?: string | null;
LastName?: string | null;
OrganizationName?: string | null;
PhoneNumber?: string | null;
State?: string | null;
ZipCode?: string | null;
}

§Properties

§
AddressLine1?: string | null
[src]

First line of the contact's address.

§
AddressLine2?: string | null
[src]

Second line of contact's address, if any.

§
City?: string | null
[src]

The city of the contact's address.

§
ContactType?: ContactType | null
[src]

Indicates whether the contact is a person, company, association, or public organization. Note the following:

  • If you specify a value other than PERSON, you must also specify a value for OrganizationName.
  • For some TLDs, the privacy protection available depends on the value that you specify for Contact Type. For the privacy protection settings for your TLD, see Domains that You Can Register with Amazon Route 53 in the Amazon Route 53 Developer Guide
  • For .es domains, the value of ContactType must be PERSON for all three contacts.
§
CountryCode?: CountryCode | null
[src]

Code for the country of the contact's address.

§
Email?: string | null
[src]

Email address of the contact.

§
ExtraParams?: ExtraParam[] | null
[src]

A list of name-value pairs for parameters required by certain top-level domains.

§
Fax?: string | null
[src]

Fax number of the contact.

Constraints: Phone number must be specified in the format "+[country dialing code].[number including any area code]". For example, a US phone number might appear as "+1.1234567890".

§
FirstName?: string | null
[src]

First name of contact.

§
LastName?: string | null
[src]

Last name of contact.

§
OrganizationName?: string | null
[src]

Name of the organization for contact types other than PERSON.

§
PhoneNumber?: string | null
[src]

The phone number of the contact.

Constraints: Phone number must be specified in the format "+[country dialing code].[number including any area code>]". For example, a US phone number might appear as "+1.1234567890".

§
State?: string | null
[src]

The state or province of the contact's city.

§
ZipCode?: string | null
[src]

The zip or postal code of the contact's address.