Postal address for payment requests.

interface PostalAddress {
    countryCode?: string;
    givenName?: string;
    locality?: string;
    phoneNumber?: string;
    postalCode?: string;
    region?: string;
    streetAddress1?: string;
    streetAddress2?: string;
    streetAddress3?: string;
    surname?: string;
}

Properties

countryCode?: string

2 letter country code

givenName?: string

Given name associated with the address.

locality?: string

City name

phoneNumber?: string

The phone number associated with the address

Note: Only numbers. Remove dashes, parentheses and other characters

postalCode?: string

Zip code or equivalent is usually required for countries that have them.

For a list of countries that do not have postal codes please refer to http://en.wikipedia.org/wiki/Postal_code

region?: string

Either a two-letter state code (for the US), or an ISO-3166-2 country subdivision code of up to three letters.

streetAddress1?: string

Line 1 of the Address (eg. number, street, etc)

streetAddress2?: string

Line 2 of the Address (eg. suite, apt #, etc.)

streetAddress3?: string

Line 3 of the Address (eg. suite, apt #, etc.)

surname?: string

Surname associated with the address.