Event

data class Event(val name: String, val id: Int, val fields: Map<String, String> = emptyMap(), val entries: List<Entry> = emptyList())

Represents an event in a tournament.

Constructors

Link copied to clipboard
constructor(name: String, id: Int, fields: Map<String, String> = emptyMap(), entries: List<Entry> = emptyList())

Properties

Link copied to clipboard

The entries in the event.

Link copied to clipboard

The fields in the event that represent its properties, such as fees, topic, etc.

Link copied to clipboard
val id: Int

The ID of the event.

Link copied to clipboard

The name of the event.