# Order Shipping Method
The `order_shipping_method` object describes a shipping method used for an order.
## Usage Example
```liquid
{%- comment -%} List all shipping methods for an order {%- endcomment -%}
{% for method in order.shipping_methods %}
- {{ method.title }}: {{ method.price }}
{% endfor %}
```
## 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](/reference/liquid/objects/store/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.