GatheringRegistrationsData

@Serializable
data class GatheringRegistrationsData(val gatheringId: String, val registrations: List<RegistrationData>, val totalCount: Int)

聚会报名列表数据

Parameters

gatheringId

聚会 ID

registrations

报名列表

totalCount

总人数

Constructors

Link copied to clipboard
constructor(gatheringId: String, registrations: List<RegistrationData>, totalCount: Int)

Properties

Link copied to clipboard
@SerialName(value = "gatheringId")
val gatheringId: String
Link copied to clipboard
@SerialName(value = "registrations")
val registrations: List<RegistrationData>
Link copied to clipboard
@SerialName(value = "totalCount")
val totalCount: Int