EventimCartItemDetailSeatsDto
Represents a single item in a shopping cart, including details about the event, session, venue, status, seat contiguity, and associated seats.
Cart item identifier.
Event identifier.
Event session identifier.
Venue identifier.
Cart item status.
Whether the cart item contains contiguous seats.
seats object[]nullable
List of seats associated with the cart item.
Rate identifier.
Base price amount.
Fees amount.
feesDetails object[]nullable
Details about fees.
Column identifier matching the amount label definition.
Amount value for this component (e.g., base price, tax, fee).
seatProperties objectrequired
Represents the properties and location of a seat in the venue seat map.
Seat identifier (ID_Physical).
Category identifier (ID_Category).
Floor identifier (ID_Floor).
Designation identifier for seat labeling.
Door/entrance identifier (ID_Door).
Block identifier (ID_Bloc).
Tribune/stand identifier (ID_Tribune).
Access point identifier (ID_Access).
Contingent/envelope identifier (ID_PrimaryEnvelope).
Row designation (e.g., "A", "B", "1").
Seat number within the row (e.g., "12", "15").
X coordinate position on the seat map.
Y coordinate position on the seat map.
Rotation angle in degrees for seat orientation.
Physical type of the seat (e.g., "SEAT").
{
"cartItemId": 0,
"eventId": 0,
"eventSessionId": 0,
"venueId": 0,
"status": 0,
"isContiguous": true,
"seats": [
{
"rateId": 0,
"amount": 0,
"fees": 0,
"feesDetails": [
{
"colId": 0,
"amount": 0
}
],
"seatProperties": {
"seatId": 0,
"categoryId": 0,
"floorId": 0,
"designationId": 0,
"doorId": 0,
"blockId": 0,
"tribuneId": 0,
"accessId": 0,
"contingentId": 0,
"rank": "string",
"seat": "string",
"coordX": 0,
"coordY": 0,
"rotation": 0,
"typePhysical": "string"
}
}
]
}