OrderTax
Type | Table |
---|---|
OrderTax | gdata_order_tax |
The applicable tax list for an order outlines all the tax charges applied to the total payment. This may include taxes like Value Added Tax (VAT), sales tax, or others taxes based on local regulations and the nature of the items ordered.
Column Name | Data Type | Description |
---|---|---|
id | varchar(255) NOT NULL | Unique identifier for the tax entry. |
tags | varchar(255) | Additional tags or labels for the tax entry. |
amount | float8 NOT NULL | The total amount of tax applied. |
name | varchar(255) | Name or description of the tax (e.g., VAT, GST). |
rate | float8 NOT NULL | Rate at which the tax is applied (expressed as a percentage, e.g., 10.0 for 10%). |
taxid | varchar(255) | An external or internal identifier for the tax type, which can be used for integrations or reference(associated to the master tax). |
taxableamount | float8 NOT NULL | The total amount on which the tax is calculated. |
order_id | varchar(255) | Reference to the unique identifier for the order this tax entry is associated with. |
Updated about 1 year ago