Entry

data class Entry(val school: String, val location: String, val name: String, val code: String, val ballots: Map<Int, Ballot> = mutableMapOf())

Represents an entry inside a tournament event.

Constructors

Link copied to clipboard
constructor(school: String, location: String, name: String, code: String, ballots: Map<Int, Ballot> = mutableMapOf())

Properties

Link copied to clipboard

All the ballots for this entry.

Link copied to clipboard

The entry code of the entry.

Link copied to clipboard

The location of the school.

Link copied to clipboard

The person's full name, who entered the tournament.

Link copied to clipboard

The name of the school the entry is from.