RegistrationStatsData

@Serializable
data class RegistrationStatsData(val total: Int, val approved: Int, val pending: Int, val checkedIn: Int, val capacity: Int? = null)

报名统计数据

Parameters

total

总报名人数

approved

已批准人数

pending

待审核人数

checkedIn

已签到人数

capacity

容量限制(可选)

Constructors

Link copied to clipboard
constructor(total: Int, approved: Int, pending: Int, checkedIn: Int, capacity: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "approved")
val approved: Int
Link copied to clipboard
@SerialName(value = "capacity")
val capacity: Int? = null
Link copied to clipboard
@SerialName(value = "checkedIn")
val checkedIn: Int
Link copied to clipboard
@SerialName(value = "pending")
val pending: Int
Link copied to clipboard
@SerialName(value = "total")
val total: Int