Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.51 KB

Tax1.md

File metadata and controls

27 lines (22 loc) · 1.51 KB

woocommerce_client.model.Tax1

Load the model package

import 'package:woocommerce_client/woocommerce_client.dart';

Properties

Name Type Description Notes
country String Country ISO 3166 code. [optional]
state String State code. [optional]
postcode String Postcode/ZIP, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'postcodes' should be used instead. [optional]
city String City name, it doesn't support multiple values. Deprecated as of WooCommerce 5.3, 'cities' should be used instead. [optional]
rate String Tax rate. [optional]
name String Tax rate name. [optional]
priority int Tax priority. [optional]
compound bool Whether or not this is a compound rate. [optional]
shipping bool Whether or not this tax rate also gets applied to shipping. [optional]
order int Indicates the order that will appear in queries. [optional]
class_ String Tax class. [optional]
postcodes List List of postcodes / ZIPs. Introduced in WooCommerce 5.3. [optional] [default to const []]
cities List List of city names. Introduced in WooCommerce 5.3. [optional] [default to const []]

[Back to Model list] [Back to API list] [Back to README]