The shipping address for the service job.

Export

Address

interface Address {
    addressLine1: string;
    addressLine2?: string;
    addressLine3?: string;
    city?: string;
    countryCode?: string;
    county?: string;
    district?: string;
    name: string;
    phone?: string;
    postalCode?: string;
    stateOrRegion?: string;
}

Properties

addressLine1: string

The first line of the address.

Memberof

Address

addressLine2?: string

Additional address information, if required.

Memberof

Address

addressLine3?: string

Additional address information, if required.

Memberof

Address

city?: string

The city.

Memberof

Address

countryCode?: string

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

Memberof

Address

county?: string

The county.

Memberof

Address

district?: string

The district.

Memberof

Address

name: string

The name of the person, business, or institution.

Memberof

Address

phone?: string

The phone number.

Memberof

Address

postalCode?: string

The postal code. This can contain letters, digits, spaces, and/or punctuation.

Memberof

Address

stateOrRegion?: string

The state or region.

Memberof

Address