TaxConfigurationPerCountry
Country-specific exceptions of a channel's tax configuration.
Added in Saleor 3.9type TaxConfigurationPerCountry {
country: CountryDisplay!
chargeTaxes: Boolean!
taxCalculationStrategy: TaxCalculationStrategy
displayGrossPrices: Boolean!
}
Fields
TaxConfigurationPerCountry.country
● CountryDisplay!
non-null object
Country in which this configuration applies.
TaxConfigurationPerCountry.chargeTaxes
● Boolean!
non-null scalar
Determines whether taxes are charged in this country.
TaxConfigurationPerCountry.taxCalculationStrategy
● TaxCalculationStrategy
enum
A country-specific strategy to use for tax calculation. Taxes can be calculated either using user-defined flat rates or with a tax app. If not provided, use the value from the channel's tax configuration.
TaxConfigurationPerCountry.displayGrossPrices
● Boolean!
non-null scalar
Determines whether displayed prices should include taxes for this country.
Member of
TaxConfiguration
object