AddressDatatype
{
readonly address1: string;
readonly address2: string;
readonly city: string;
readonly state: string;
readonly postcode: string;
readonly country: Country;
}| Property | Type | |
|---|---|---|
.address1 | string | required readonly |
.address2 | string | required readonly |
.city | string | required readonly |
.state | string | required readonly |
.postcode | string | required readonly |
.country | Country | Two-letter ISO 3166-1 alpha-2 country code string (a key of COUNTRIES). required readonly |
| Type | |
|---|---|
Country | Two-letter ISO 3166-1 alpha-2 country code string (a key of COUNTRIES). |
Valid shape for physical address data.