Skip to content

Address model

Address is a model of an address related to the User and Basket APIs and consists of the following fields:

  • email: string | undefined
  • firstName: string
  • lastName: string
  • city: string
  • personalId: string | null
  • country: TLocaleRegion | undefined
  • countryId: number
  • companyName: string
  • isCompany: boolean | undefined
  • phone: string
  • state: string
  • street: string
  • streetAdditional: string
  • taxId: string
  • zipCode: string

Where TLocaleRegion is a 2 letter country code. You can see all the country codes here.