FullDomesticAddressInput with required email and phone number

interface FullContactInformation {
    attention_first_name?: null | string;
    attention_last_name?: null | string;
    city: string;
    company_name?: null | string;
    email_address: string;
    fax_number?: null | string;
    phone_number: string;
    residential?: null | boolean;
    state: StateCode;
    street: GraphqlList<string>;
    urbanization_code?: null | string;
    zip_code: string;
    [field_name: string]: undefined | JsonValue;
}

Hierarchy (View Summary)

Indexable

Properties

attention_first_name?: null | string

The first name of the person associated with the address.

attention_last_name?: null | string

The last name of the person associated with the address.

city: string

The city the address is in.

company_name?: null | string

The name of the company associated with the address.

email_address: string

The email address of the contact at the address.

fax_number?: null | string

The fax number of the contact at the address.

phone_number: string

The phone number of the contact at the address.

residential?: null | boolean

Whether the address is residential or commercial

state: StateCode

The two-letter state code

street: GraphqlList<string>

The street address. Note that most carriers will only accept the first two lines.

urbanization_code?: null | string

The urbanization code, if applicable. Only relevant for Puerto Rico addresses.

zip_code: string

The ZIP Code, as assigned by the US Postal Service