Quest

@Serializable
data class Quest(val id: String? = null, val name: String? = null, val description: String? = null, val rewards: List<QuestReward>? = null, val objectives: List<QuestObjective>? = null, val requirements: List<QuestRequirement>? = null)

Constructors

Link copied to clipboard
constructor(id: String? = null, name: String? = null, description: String? = null, rewards: List<QuestReward>? = null, objectives: List<QuestObjective>? = null, requirements: List<QuestRequirement>? = null)

Properties

Link copied to clipboard
val description: String? = null
Link copied to clipboard
val id: String? = null
Link copied to clipboard
val name: String? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val rewards: List<QuestReward>? = null