blob: 1d2e4158db302ac20847e21a1596fc0cce4e0b44 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
package market.guess.model.event;
import java.util.List;
import market.guess.model.market.MarketStateDTO;
import market.guess.model.market.OrderBookDTO;
import market.guess.model.market.TradeRowDTO;
public record EventDetailDTO(
EventSummaryDTO summary,
MarketStateDTO state,
List<TradeRowDTO> history,
String settledMarket,
List<OrderBookDTO> orderBooks,
List<ParticipantDTO> participants) {}
|