OBJECT

TaxRegion

Represents a tax jurisdiction from which a final price was calculated.

link GraphQL Schema definition

1type TaxRegion {
2
3# Tax country, required for the TaxRegion object type.
4countryCode: String!
5
6# Tax state if applicable.
7state: String
8
9# Tax zip code if applicable.
10zipCode: String
11
12}