PhysicalAddress
A physical address
type PhysicalAddress {
addressLine1: String!
addressLine2: String
city: String!
country: CountryCode
state: String!
zip: PostalCode!
}
Fields
PhysicalAddress.addressLine1
● String!
non-null scalar
The first line of an address e.g. 123 Main St
PhysicalAddress.addressLine2
● String
scalar
The second line of an address e.g. Apt 111
PhysicalAddress.city
● String!
non-null scalar
The city e.g. Austin
PhysicalAddress.country
● CountryCode
scalar
The country e.g. USA
PhysicalAddress.state
● String!
non-null scalar
The state e.g. Texas
PhysicalAddress.zip
● PostalCode!
non-null scalar
The zip code e.g. 78704
Member Of
Individual
object