An internationalized Address.
The amount of data available depends on what has been
set. Use status
to determine how much of the
address should be populated.
- type Address {
- # The street address lines, generally this will
- # be one or two entries although some addresses will have three.
- String!] : [
- # The administrative area, exact definition varies based on location, but for US
- # addresses this is the state.
- String :
- # The locality, exact definition varies based on location, but for US addresses
- # this is the city.
- String :
- # The dependent locality, more specific than city, not often used in US addresses.
- String :
- String :
- String :
- # Two character ISO-3166 country code.
- String :
- # The US display name for the country.
- String :
- # The address formatted to the specification of
- # the country.
- # Each entry in the array represents an address line.
- String!] : [
- # The raw address as a single line.
- String :
- # Describes how reliable the address information is.
- AddressStatus :
- }