BestRun

@Serializable
data class BestRun(val timestamp: Long? = null, val scoreExploration: Int? = null, val scoreSpeed: Int? = null, val scoreSkill: Int? = null, val scoreBonus: Int? = null, val dungeonClass: String? = null, val teammates: List<String>? = null, val elapsedTime: Long? = null, val damageDealt: Double? = null, val deaths: Int? = null, val mobsKilled: Int? = null, val secretsFound: Int? = null, val damageMitigated: Double? = null, val allyHealing: Double? = null)

Constructors

Link copied to clipboard
constructor(timestamp: Long? = null, scoreExploration: Int? = null, scoreSpeed: Int? = null, scoreSkill: Int? = null, scoreBonus: Int? = null, dungeonClass: String? = null, teammates: List<String>? = null, elapsedTime: Long? = null, damageDealt: Double? = null, deaths: Int? = null, mobsKilled: Int? = null, secretsFound: Int? = null, damageMitigated: Double? = null, allyHealing: Double? = null)

Properties

Link copied to clipboard
@SerialName(value = "ally_healing")
val allyHealing: Double? = null
Link copied to clipboard
@SerialName(value = "damage_dealt")
val damageDealt: Double? = null
Link copied to clipboard
@SerialName(value = "damage_mitigated")
val damageMitigated: Double? = null
Link copied to clipboard
val deaths: Int? = null
Link copied to clipboard
@SerialName(value = "dungeon_class")
val dungeonClass: String? = null
Link copied to clipboard
@SerialName(value = "elapsed_time")
val elapsedTime: Long? = null
Link copied to clipboard
@SerialName(value = "mobs_killed")
val mobsKilled: Int? = null
Link copied to clipboard
@SerialName(value = "score_bonus")
val scoreBonus: Int? = null
Link copied to clipboard
@SerialName(value = "score_exploration")
val scoreExploration: Int? = null
Link copied to clipboard
@SerialName(value = "score_skill")
val scoreSkill: Int? = null
Link copied to clipboard
@SerialName(value = "score_speed")
val scoreSpeed: Int? = null
Link copied to clipboard
@SerialName(value = "secrets_found")
val secretsFound: Int? = null
Link copied to clipboard
val teammates: List<String>? = null
Link copied to clipboard
val timestamp: Long? = null