Game

data class Game(val gameType: GameType, val rows: List<Row>, val drawInfo: List<DrawInfo>)

The Game itself contains its type, list of Rows and list of DrawInfos. The drawInfo list contains more than one if the coupon is a multi week coupon.

Constructors

Link copied to clipboard
constructor(gameType: GameType, rows: List<Row>, drawInfo: List<DrawInfo>)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val rows: List<Row>