AddressDatatype

{
	readonly address1: string;
	readonly address2: string;
	readonly city: string;
	readonly state: string;
	readonly postcode: string;
	readonly country: Country;
}
PropertyType
.address1string
required readonly
.address2string
required readonly
.citystring
required readonly
.statestring
required readonly
.postcodestring
required readonly
.countryCountry
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.