GatheringDetailData

@Serializable
data class GatheringDetailData(val id: String, val name: String, val description: String? = null, val startDate: String, val endDate: String? = null, val location: String, val lat: Double? = null, val lng: Double? = null, val agenda: List<AgendaItem>? = null, val tags: List<String>? = null, val registrationStats: RegistrationStatsData, val status: String, val organizer: OrganizerData)

聚会详情数据

Parameters

id

聚会 ID

name

聚会名称

description

描述

startDate

开始日期(ISO 8601 格式)

endDate

结束日期(ISO 8601 格式,可选)

location

地点

lat

纬度(可选)

lng

经度(可选)

agenda

议程列表

tags

标签列表

registrationStats

报名统计

status

状态

organizer

组织者信息

Constructors

Link copied to clipboard
constructor(id: String, name: String, description: String? = null, startDate: String, endDate: String? = null, location: String, lat: Double? = null, lng: Double? = null, agenda: List<AgendaItem>? = null, tags: List<String>? = null, registrationStats: RegistrationStatsData, status: String, organizer: OrganizerData)

Properties

Link copied to clipboard
@SerialName(value = "agenda")
val agenda: List<AgendaItem>? = null
Link copied to clipboard
@SerialName(value = "description")
val description: String? = null
Link copied to clipboard
@SerialName(value = "endDate")
val endDate: String? = null
Link copied to clipboard
@SerialName(value = "id")
val id: String
Link copied to clipboard
@SerialName(value = "lat")
val lat: Double? = null
Link copied to clipboard
@SerialName(value = "lng")
val lng: Double? = null
Link copied to clipboard
@SerialName(value = "location")
val location: String
Link copied to clipboard
@SerialName(value = "name")
val name: String
Link copied to clipboard
@SerialName(value = "organizer")
val organizer: OrganizerData
Link copied to clipboard
@SerialName(value = "registrationStats")
val registrationStats: RegistrationStatsData
Link copied to clipboard
@SerialName(value = "startDate")
val startDate: String
Link copied to clipboard
@SerialName(value = "status")
val status: String
Link copied to clipboard
@SerialName(value = "tags")
val tags: List<String>? = null