CheckoutShipping Object
Description
Shipping information for a checkout.
Declaration
type CheckoutShipping {
status: String
date: Date
price: CheckoutShippingPrice!
method: String
methods: [CheckoutMethod!]
freeShippingThreshold: Float
address: Address
tracking: String
shopCollection: Boolean
confirmationEmail: CheckoutEmail
weight: String
}
Fields
| Name | Type | Description |
|---|---|---|
status | String | Shipping status (e.g., "pending", "shipped"). |
date | Date | Expected or actual shipping date. |
price | CheckoutShippingPrice! | Shipping price information including taxes. |
method | String | Selected shipping method identifier. |
methods | [CheckoutMethod!] | Available shipping methods with costs. |
freeShippingThreshold | Float | Minimum order amount to qualify for free shipping. |
address | Address | Shipping address. |
tracking | String | Tracking number for shipped orders. |
shopCollection | Boolean | Whether this is a shop collection order (pickup in store). |
confirmationEmail | CheckoutEmail | Shipping confirmation email information. |
weight | String | Total weight of items for shipping calculation. |