OBJECT

AppliedTaxRule

link GraphQL Schema definition

1type AppliedTaxRule {
2taxId: String!
3
4taxName: String!
5
6taxPercent: Float!
7
8# Current active version of this tax rule, null for removed tax rules or rules made from tax plugins.
9#
10# Required permission: TaxRule:read
11taxRule: TaxRule
12
13}