EventimCartSeatDto
Represents a seat item in the cart, including rate details, price breakdown, and seat-specific properties.
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").
{
"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"
}
}