interface Address {
    additionalAddressInfo?: string;
    additionalStreetInfo?: string;
    apartment?: string;
    building?: string;
    city?: string;
    company?: string;
    country: string;
    custom?: Custom;
    department?: string;
    email?: string;
    externalId?: string;
    fax?: string;
    firstName?: string;
    id?: string;
    key?: string;
    lastName?: string;
    mobile?: string;
    pOBox?: string;
    phone?: string;
    postalCode?: string;
    region?: string;
    salutation?: string;
    state?: string;
    streetName?: string;
    streetNumber?: string;
    title?: string;
}

Properties

additionalAddressInfo?: string
additionalStreetInfo?: string
apartment?: string
building?: string
city?: string
company?: string
country: string

A two-digit country code as per ISO 3166-1 alpha-2.

custom?: Custom

Custom Fields defined for the Address. Custom Fields can only be applied to shippingAddress.

department?: string
email?: string
externalId?: string
fax?: string
firstName?: string
id?: string
key?: string
lastName?: string
mobile?: string
pOBox?: string
phone?: string
postalCode?: string
region?: string
salutation?: string
state?: string
streetName?: string
streetNumber?: string
title?: string