Specific details to identify a place.

AddressInput

interface AddressInput {
    addressLine1: string;
    addressLine2?: string;
    city: string;
    companyName?: string;
    countryCode: string;
    email?: string;
    name: string;
    phoneNumber: string;
    postalCode: string;
    stateOrProvinceCode?: string;
}

Properties

addressLine1: string

Street address information.

AddressInput

addressLine2?: string

Additional street address information.

AddressInput

city: string

The city.

AddressInput

companyName?: string

The name of the business.

AddressInput

countryCode: string

The country code in two-character ISO 3166-1 alpha-2 format.

AddressInput

email?: string

The email address.

AddressInput

name: string

The name of the individual who is the primary contact.

AddressInput

phoneNumber: string

The phone number.

AddressInput

postalCode: string

The postal code.

AddressInput

stateOrProvinceCode?: string

The state or province code.

AddressInput