PlayerStatsData

data class PlayerStatsData(val uuid: UUID, val kills: UInt, val mobKills: UInt, val deaths: UInt, val updatedAt: LocalDateTime? = null)

プレイヤーデータを示すモデル

Parameters

uuid

プレイヤーの UUID

kills

プレイヤーのキル数

mobKills

プレイヤーのモブのキル数

deaths

プレイヤーのデス数

updatedAt

データの更新日時

Constructors

Link copied to clipboard
constructor(uuid: UUID, kills: UInt, mobKills: UInt, deaths: UInt, updatedAt: LocalDateTime? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val kills: UInt
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val uuid: UUID