# ShippingMethod
The `shipping_method` object describes a shipping method available in the store, including its title, description, and logo.
## Usage Example
```liquid
{%- comment -%} List available shipping methods {%- endcomment -%}
{% for method in store.shipping_methods %}
-
{% if method.logo %}
{% endif %}
{{ method.title }}
{{ method.short_description }}
{% endfor %}
```
## Properties
### description
Returns the full description of the shipping method.
### logo
Returns the logo of the shipping method.
### short_description
Returns the short description of the shipping method.
### title
Returns the title of the shipping method.