CartItem
Object
A cart item might be something that was added to the cart manually (like a ticket or a coupon code) or automatically (like fees or free giveaways)."
Fields
| Field | Description | Type |
|---|---|---|
availableQuantities | A list of quantities that can be switched to. `null` if the quantity can't be changed. | [ Int! ] |
bookable | The seat or volume associated with this item. | SeatmapBookable |
canBeRemoved | Indicates whether the item can be removed from the cart. | Boolean! |
description | Details about the item. For example, the row and seat number in case of a seat ticket. | String |
group | CartItemGroup | |
id | The ID should not be considered to be consistent over longer periods of time. Make sure to only use fresh IDs when, for example, deleting an item. | ID! |
name | String! | |
price | The price of the item. It may be negative, e.g. credit for a redeemed discount code. | Money |
quantity | Int! | |
ticketType | TicketType |