Goal

@Serializable
data class Goal(val id: String? = null, val name: String? = null, val tiers: List<Int>? = null, val progress: Int? = null, val lore: String? = null, val fullLore: List<String>? = null, val requiredAmount: Int? = null)

Information about a Bingo goal.

Constructors

Link copied to clipboard
constructor(id: String? = null, name: String? = null, tiers: List<Int>? = null, progress: Int? = null, lore: String? = null, fullLore: List<String>? = null, requiredAmount: Int? = null)

Properties

Link copied to clipboard
val fullLore: List<String>? = null

Lore as a string list (no different?) // TODO find out

Link copied to clipboard
val id: String? = null

ID for the goal.

Link copied to clipboard
val lore: String? = null

Lore as a string.

Link copied to clipboard
val name: String? = null

Name of the goal.

Link copied to clipboard
val progress: Int? = null

Current progress for global goals.

Link copied to clipboard
val requiredAmount: Int? = null

Required amount to complete the goal.

Link copied to clipboard
val tiers: List<Int>? = null

List of tiers for the goal.