Tax Object
Description
Tax information including name, amount, and rate.
Declaration
type Tax {
name: String
amount: Float
rate: Float
}
Fields
| Name | Type | Description |
|---|---|---|
name | String | Name of the tax (e.g., "VAT", "Sales Tax"). |
amount | Float | Tax amount in the shop's currency. |
rate | Float | Tax rate as a percentage (e.g., 20.0 for 20%). |