EventimAllocateManualSeatsResponse
Represents the response after manually allocating or deallocating seats, containing the updated seat list and any per-seat errors.
cartIdinteger<int32>required
The cart identifier.
cartItemIdinteger<int32>required
The cart item identifier.
cartItemDetail object[]nullable
The list of successfully allocated seats with pricing and properties.
Array [
seatIdinteger<int32>required
Seat identifier.
rateIdinteger<int32>required
Rate identifier. (optional if seat not selected)
]
errors object[]nullable
The list of per-seat errors encountered during allocation (e.g., seat already taken).
Array [
seatIdinteger<int32>required
Seat identifier.
errorTypestringnullable
Error associated with the seat.
]
EventimAllocateManualSeatsResponse
{
"cartId": 0,
"cartItemId": 0,
"cartItemDetail": [
{
"seatId": 0,
"rateId": 0
}
],
"errors": [
{
"seatId": 0,
"errorType": "string"
}
]
}