Address
(OBJECT)
System-registered postal address. It may be a an invoicing, delivery or company registered address. @see IAddressPoint This is an entity associated with some user or company account for repeated usage
link GraphQL Schema definition
- type Address implements IAddressPoint {
- # internal address ID - if address is one of predefined customer's addressess
- # It allows to reuse one address multiple times. However the same address
- # may exist under different IDs, either by different customers registering
- # the same address as 'their own' or by a single customer creating duplicates.
- : ID!
- # company's name incl. legal form
- : String
- # person's name
- : String
- # person's surname
- : String
- # street name
- : String
- # building ID (descriptive number)
- : String
- # street number (orientation number)
- : String
- # name of city/town/municipality
- : String
- # zip code
- : String
- # state
- : String
- # country
- : String
- # contact e-mail
- : Email
- # contact phone
- : Phone
- }