AddressData

(OBJECT)

Address data snapshot. Static address data. It may be a snapshot of system-registered Address or ad-hoc address filled into an order by a customer.

link GraphQL Schema definition

  • type AddressData implements IAddressPoint {
  • # company's name incl. legal form
  • company_name: String
  • # person's name
  • name: String
  • # person's surname
  • surname: String
  • # street name
  • street: String
  • # building ID (descriptive number)
  • descriptive_number: String
  • # street number (orientation number)
  • orientation_number: String
  • # name of city/town/municipality
  • city: String
  • # zip code
  • zip: String
  • # state
  • state: String
  • # country
  • country: String
  • # contact e-mail
  • email: Email
  • # contact phone
  • phone: Phone
  • }