PhysicalAddress
Describes the street address belonging to an individual or corporation.
type PhysicalAddress {
addressLine1: String!
addressLine2: String
city: String!
country: String
state: String!
zip: String!
}
Fields
PhysicalAddress.addressLine1
● String!
non-null scalar
The first line of the address.
PhysicalAddress.addressLine2
● String
scalar
The second line of the address.
PhysicalAddress.city
● String!
non-null scalar
The city in which the address is located.
PhysicalAddress.country
● String
scalar
The country in which the address is located.
PhysicalAddress.state
● String!
non-null scalar
The state in which the address is located.
PhysicalAddress.zip
● String!
non-null scalar
The postal ("zip") code of the address.
Member of
User
object