CheckoutLineItem Object
Description
A single line item in a checkout with quantity and pricing.
Declaration
type CheckoutLineItem {
_id: ID!
id: ID
listing: CheckoutListing!
item: CheckoutItem!
quantity: Float!
price: CheckoutLinePrice!
added: Date
total: Float
unavailable: Boolean
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id ⚠️ | ID | Line item identifier. ⚠️ Deprecated: No longer supported |
listing | CheckoutListing! | Listing information for this line item. |
item | CheckoutItem! | Item information for this line item. |
quantity | Float! | Quantity of items in this line. |
price | CheckoutLinePrice! | Pricing information for this line item. |
added | Date | Date when this item was added to the checkout. |
total | Float | Total price for this line item. |
unavailable | Boolean | Whether this item is currently unavailable. |