Order Shipping Method
The order_shipping_method
object describes a shipping method used for an order.
Usage Example
{%- comment -%} List all shipping methods for an order {%- endcomment -%}
<ul>
{% for method in order.shipping_methods %}
<li>{{ method.title }}: {{ method.price }}</li>
{% endfor %}
</ul>
Properties
id
Returns the unique id for this shipping method.
description
Returns the description of the shipping method.
info
Returns additional information about the shipping method.
net_price
Returns the shipping price without tax.
pickup_address
Returns the pickup address.
pickup_availability
Returns the pickup availability as a string if it’s available.
price
Returns the price for this shipping method.
rate
Returns the tax rate in decimals.
rate_percentage
Returns the tax rate as a percentage.
tax
Returns the tax amount.
title
Returns the title or name of the shipping method.
type
Returns the type of the shipping method.
Last updated on