GatheringYearStatsData

@Serializable
data class GatheringYearStatsData(val year: Int, val total: Int, val upcoming: Int, val ongoing: Int, val completed: Int)

聚会年度统计数据

Parameters

year

年份

total

聚会总数

upcoming

即将举行的聚会数

ongoing

正在进行中的聚会数

completed

已完成的聚会数

Constructors

Link copied to clipboard
constructor(year: Int, total: Int, upcoming: Int, ongoing: Int, completed: Int)

Properties

Link copied to clipboard
@SerialName(value = "completed")
val completed: Int
Link copied to clipboard
@SerialName(value = "ongoing")
val ongoing: Int
Link copied to clipboard
@SerialName(value = "total")
val total: Int
Link copied to clipboard
@SerialName(value = "upcoming")
val upcoming: Int
Link copied to clipboard
@SerialName(value = "year")
val year: Int