## OrderTaxLine The `order_tax_line` object describes a tax line applied to an order. ```liquid {%- comment -%} List tax lines for an order {%- endcomment -%} {% for tax in order.tax_lines %}
{{ tax.rate_percentage }}%: {{ tax.price | money }}
{% endfor %} ``` ## price Returns the price. ## rate Returns the tax rate in decimals. ## rate_percentage Returns the tax rate.