Selling Partner API SDK for JavaScript
    Preparing search index...

    Represents an address

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

    Properties

    addressLine1: string

    Street address information.

    addressLine2?: string

    Additional street address information.

    city?: string

    The city.

    countryCode: string

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

    postalCode?: string

    The postal code.

    stateOrProvinceCode?: string

    The state or province code.