# Liquid Objects: shipping_method
Information about the shipping method for an order.
## Properties
**discount_allocations**
- Type: array of `discount_allocation`
- The discount allocations that apply to the shipping method.
**handle**
- Type: string
- The handle of the shipping method. Note: The price is appended to the handle.
**id**
- Type: string
- The ID of the shipping method.
**original_price**
- Type: number
- The shipping method price in currency subunits before discounts, displayed in the customer's local currency. For currencies without subunits (JPY, KRW), tenths and hundredths are appended.
- *Tip:* Use money filters to output formatted prices.
**price_with_discounts**
- Type: number
- The shipping method price in currency subunits after discounts and order-level discounts are applied, shown in customer's local currency.
- *Tip:* Use money filters to output formatted prices.
**tax_lines**
- Type: array of `tax_line`
- The tax lines for the shipping method.
**title**
- Type: string
- The shipping method title. In order contexts, it appears in the checkout language; elsewhere, typically in the customer's preferred language.
## Deprecated Properties
**price**
- Type: number
- Deprecated: The price after discounts but excluding order-level discounts.
- *Replacement:* Use `price_with_discounts` instead.
## Example
```json
{
"handle": "shopify-Standard-0.00",
"id": "shopify-Standard-0.00",
"original_price": "0.00",
"price": "0.00",
"price_with_discounts": "0.00",
"tax_lines": [],
"title": "Standard"
}
```