# order

> The order Liquid object in a Shoplazza theme, holding one order of the store, with the full list of its properties.

An order.

| Properties         | Type                                                         | Description                        |
| :----------------- | :----------------------------------------------------------- | :--------------------------------- |
| `allowed_actions`  | [order\_allowed\_actions](./order_allowed_actions)       | The allowed actions of the order.  |
| `billing_address`  | [address](./address)                                     | The billing address of the order.  |
| `customer`         | [customer](./customer)                                 | The customer info of the order.    |
| `line_items`       | an array of [line\_item](./line_item)                    | The line items are in the order.   |
| `order_info`       | [order\_info](./order_info)                              | The info of the order.             |
| `payment_line`     | [order\_payment\_line](./order_payment_line)             | The payment line of the order.     |
| `payment_lines`    | an array of [order\_payment\_line](./order_payment_line) | The payment lines of the order.    |
| `shipping_address` | [address](./address)                                     | The shipping address of the order. |
| `shipping_line`    | [string](../basics/liquid-types#string)                          | The shipping line on the order.    |

```json title="Object"
{
  "allowed_actions": {},
  "billing_address": {},
  "customer": {},
  "line_items": [],
  "order_info": {},
  "payment_line": {},
  "payment_lines": [],
  "shipping_address": {},
  "shipping_line": "{\"rule_type\":\"price\",\"rule_range_min\":\"0.00\",\"rule_range_max\":\"0.00\",\"rule_range_infinite\":1,\"rule_range_unit\":\"USD\",\"rate_type\":\"normal\",\"rate_amount\":\"0.00\",\"rate_first_range\":\"0.00\",\"rate_first_unit\":\"g\",\"rate_additional_amount\":\"0.00\",\"rate_additional_range\":\"0.00\",\"rate_additional_unit\":\"g\",\"id\":\"dd792ffd-a511-4256-87b9-6eb44f2d4e94\",\"name\":\"固定运费\",\"desc\":\"\",\"support_cod\":1,\"shipping_price\":\"0.00\"}"
}
```
