Represents an address

Address

interface Address {
    addressLine1: string;
    addressLine2?: string;
    city?: string;
    countryCode: string;
    postalCode?: string;
    stateOrProvinceCode?: string;
}

Properties

addressLine1: string

Street address information.

Address

addressLine2?: string

Additional street address information.

Address

city?: string

The city.

Address

countryCode: string

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

Address

postalCode?: string

The postal code.

Address

stateOrProvinceCode?: string

The state or province code.

Address