Specific details to identify a place.

Address

interface Address {
    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.

Address

addressLine2?: string

Additional street address information.

Address

city: string

The city.

Address

companyName?: string

The name of the business.

Address

countryCode: string

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

Address

email?: string

The email address.

Address

name: string

The name of the individual who is the primary contact.

Address

phoneNumber?: string

The phone number.

Address

postalCode: string

The postal code.

Address

stateOrProvinceCode?: string

The state or province code.

Address