OBJECT

TaxBreakdownLine

link GraphQL Schema definition

1type TaxBreakdownLine {
2description: String!
3
4# Tax in the checkout
5taxPercent: Float!
6
7# Tax before the checkout
8taxIncluded: Float!
9
10value: MonetaryValue!
11
12}