GatheringRegistrationStats

@Serializable
data class GatheringRegistrationStats(val totalRegistrations: Int? = null, val approvedCount: Int? = null, val pendingCount: Int? = null)

聚会报名统计。

Constructors

Link copied to clipboard
constructor(totalRegistrations: Int? = null, approvedCount: Int? = null, pendingCount: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "approved_count")
val approvedCount: Int?

已批准人数

Link copied to clipboard
@SerialName(value = "pending_count")
val pendingCount: Int?

待审核人数

Link copied to clipboard
@SerialName(value = "total_registrations")
val totalRegistrations: Int?

总报名人数