Tournament

data class Tournament(val name: String, val descriptionHTML: String, val description: String, val year: String, val location: String, val events: List<Event> = mutableListOf(), val judges: Map<String, List<Judge>> = mutableMapOf())

Represents a tournament.

Constructors

Link copied to clipboard
constructor(name: String, descriptionHTML: String, description: String, year: String, location: String, events: List<Event> = mutableListOf(), judges: Map<String, List<Judge>> = mutableMapOf())

Properties

Link copied to clipboard

The raw description of the tournament.

Link copied to clipboard

The description of the tournament in HTML format.

Link copied to clipboard

The events in the tournament.

Link copied to clipboard

The judges in the tournament.

Link copied to clipboard

The location of the tournament.

Link copied to clipboard

The name of the tournament.

Link copied to clipboard

The year the tournament takes place in.