Skip to main content

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

NameTypeDescription
_idID!Internal database identifier.
id ⚠️IDLine item identifier. ⚠️ Deprecated: No longer supported
listingCheckoutListing!Listing information for this line item.
itemCheckoutItem!Item information for this line item.
quantityFloat!Quantity of items in this line.
priceCheckoutLinePrice!Pricing information for this line item.
addedDateDate when this item was added to the checkout.
totalFloatTotal price for this line item.
unavailableBooleanWhether this item is currently unavailable.