DrawResult

data class DrawResult(val drawNumbers: List<Int>, val drawExtraNumbers: List<Int>, val totalWinAmount: Double, val totalPlayerWinAmount: Double, val prizes: List<Prize>)

The draw result contains a list of drawNumbers, a list of drawExtraNumbers, the totalWinAmount and the list of prizes. The winning numbers, can be checked against the row numbers. TotalWinAmount, totalPlayerWinAmount and prizes will indicate if there are any prizes won on this coupon

Constructors

Link copied to clipboard
constructor(drawNumbers: List<Int>, drawExtraNumbers: List<Int>, totalWinAmount: Double, totalPlayerWinAmount: Double, prizes: List<Prize>)

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard