SlayerQuest

@Serializable
data class SlayerQuest(val type: String? = null, val tier: Int? = null, val startTimestamp: Long? = null, val completionState: Int? = null, val usedArmor: Boolean? = null, val solo: Boolean? = null, val combatXp: Int? = null, val recentMobKills: List<RecentMobKill>? = null, val lastKilledMobIsland: String? = null, val spawnTimestamp: Long? = null)

Constructors

Link copied to clipboard
constructor(type: String? = null, tier: Int? = null, startTimestamp: Long? = null, completionState: Int? = null, usedArmor: Boolean? = null, solo: Boolean? = null, combatXp: Int? = null, recentMobKills: List<RecentMobKill>? = null, lastKilledMobIsland: String? = null, spawnTimestamp: Long? = null)

Properties

Link copied to clipboard
@SerialName(value = "combat_xp")
val combatXp: Int? = null
Link copied to clipboard
@SerialName(value = "completion_state")
val completionState: Int? = null
Link copied to clipboard
@SerialName(value = "last_killed_mob_island")
val lastKilledMobIsland: String? = null
Link copied to clipboard
@SerialName(value = "recent_mob_kills")
val recentMobKills: List<RecentMobKill>? = null
Link copied to clipboard
val solo: Boolean? = null
Link copied to clipboard
@SerialName(value = "spawn_timestamp")
val spawnTimestamp: Long? = null
Link copied to clipboard
@SerialName(value = "start_timestamp")
val startTimestamp: Long? = null
Link copied to clipboard
val tier: Int? = null
Link copied to clipboard
val type: String? = null
Link copied to clipboard
@SerialName(value = "used_armor")
val usedArmor: Boolean? = null