# Checkout Liquid Object
A customer's checkout in Shopify's Liquid template language.
## ⚠️ Deprecation Notice
"The `checkout` object will be deprecated for the Information, Shipping, and Payment pages on August 13, 2024." Merchants using customized `checkout.liquid` pages must upgrade to Checkout Extensibility before this deadline. Consider building checkout extensions instead to extend checkout functionality.
## Access & Availability
- Available on the Order status page for all merchants
- Shopify Plus merchants can access it in the `checkout.liquid` layout
- Not available on the Thank you page
## Core Properties
| Property | Type | Description |
|----------|------|-------------|
| `applied_gift_cards` | gift_card array | Gift cards applied to the checkout |
| `attributes` | object | Additional customer-entered attributes |
| `billing_address` | address | Billing address from checkout |
| `buyer_accepts_marketing` | boolean | Email marketing subscription status |
| `cart_level_discount_applications` | discount_application array | Cart-specific discounts |
| `currency` | string | ISO currency code |
| `customer` | customer | Associated customer object |
| `discount_applications` | discount_application array | All applied discounts |
| `email` | string | Checkout email address |
| `gift_cards_amount` | number | Amount paid via gift cards |
| `id` | number | Checkout identifier |
| `item_count` | number | Number of items |
| `line_items` | line_item array | Products in checkout |
| `line_items_subtotal_price` | number | Subtotal before tax/shipping |
| `shipping_address` | address | Delivery address |
| `shipping_method` | shipping_method | Selected shipping option |
| `shipping_price` | number | Shipping cost |
| `tax_price` | number | Total tax amount |
| `total_price` | number | Final checkout total |
| `transactions` | transaction array | Payment transactions |
## Money Values
All monetary amounts are in the currency's subunit (e.g., cents). Use money filters for formatted output. Non-subunit currencies like JPY append tenths/hundredths.
## Deprecated Properties
Avoid using: `cancelled`, `discount`, `discounts`, `financial_status`, `fulfilled_at`, `fulfilled_line_items`, `fulfillment_status`, `unavailable_line_items`, and `unfulfilled_line_items`.