Skip to content

Tax

The Tax object represents information about tax rate available in the storefront.

classDiagram
  direction LR
  class Tax{
    int id
    string name
    float value
    string class
  }

Properties

Attribute name Type Description
id int The unique identifier of the tax.
name string Returns the discount.
value float The percentage tax value.
class string The class of the tax.

Examples

id property

{{ tax.id }}
1

name property

{{ tax.name }}
Example tax

value property

{{ tax.value }}
23

class property

{{ tax.class }}
23%