Order Tax Line
The order_tax_line
object describes a tax line applied to an order.
Usage Example
{%- comment -%} List all tax lines for an order {%- endcomment -%}
<ul>
{% for tax in order.tax_lines %}
<li>{{ tax.title }}: {{ tax.amount }}</li>
{% endfor %}
</ul>
Properties
amount
Returns the tax amount.
id
Returns the unique id for this tax line.
rate
Returns the tax rate (as a decimal or percentage).
title
Returns the title or description of the tax line.
Last updated on