EventimConfirmSeatOrderItem
Represents a seat cart item with its print action and associated seats.
The unique identifier of the cart item.
The print action to apply. Allowed values: DELAYED (deferred printing, no print details required), PRINTED (immediate printing, requires SupportType, BarCode, and FiscalNumber on each seat).
seats object[]nullable
The seats included in this cart item.
The unique identifier of the seat.
The optional external identity assigned to this seat.
The ticket support type. Allowed values: TICKET, ETICKET. Required when PrintAction is PRINTED. Must be null when PrintAction is DELAYED.
The barcode of the printed ticket. Required when PrintAction is PRINTED. Must be null when PrintAction is DELAYED.
The fiscal number of the printed ticket. Required when PrintAction is PRINTED. Must be null when PrintAction is DELAYED.
{
"cartItemId": 0,
"printAction": "string",
"seats": [
{
"seatId": 0,
"externalIdentityId": 0,
"supportType": "string",
"barCode": "string",
"fiscalNumber": "string"
}
]
}