Election

@Serializable
data class Election(val year: Int? = null, val candidates: List<Candidate>? = null)

Information about an election.

Constructors

Link copied to clipboard
constructor(year: Int? = null, candidates: List<Candidate>? = null)

Properties

Link copied to clipboard
val candidates: List<Candidate>? = null

A list of Candidate for this election.

Link copied to clipboard
val year: Int? = null

What year the election is for.