Postal address for 3D Secure flows.

interface PostalAddress {
    countryCodeAlpha2?: string;
    extendedAddress?: string;
    givenName?: string;
    line3?: string;
    locality?: string;
    phoneNumber?: string;
    postalCode?: string;
    region?: string;
    streetAddress?: string;
    surname?: string;
}

Properties

countryCodeAlpha2?: string

2 letter country code

extendedAddress?: string

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

givenName?: string

Given name associated with the address.

line3?: string

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

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.

streetAddress?: string

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

surname?: string

Surname associated with the address.