GraphQL OBJECT

Country

Country for which taxes are calculated.

link Definition

  • type Country {
  • # Country code.
  • id: CountryEnum
  • # Two-character ID of the contact's country, see ISO 3166-1 alpha-2. If not set,
  • # the country is based on the customer's GeoIP location.
  • isoCode: String
  • # Country name.
  • name: String
  • # Type of applicable tax, e.g. sales tax, value added tax.
  • taxType: TaxType
  • }