GatheringMonthlyDistanceItem

@Serializable
data class GatheringMonthlyDistanceItem(val id: String, val name: String, val startDate: String, val endDate: String? = null, val location: String? = null, val status: String, val distance: Double? = null)

聚会月历距离项

Parameters

id

聚会 ID

name

聚会名称

startDate

开始日期(ISO 8601 格式)

endDate

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

location

地点

status

状态

distance

距离(公里,可选)

Constructors

Link copied to clipboard
constructor(id: String, name: String, startDate: String, endDate: String? = null, location: String? = null, status: String, distance: Double? = null)

Properties

Link copied to clipboard
@SerialName(value = "distance")
val distance: Double? = 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 = "location")
val location: String? = null
Link copied to clipboard
@SerialName(value = "name")
val name: String
Link copied to clipboard
@SerialName(value = "startDate")
val startDate: String
Link copied to clipboard
@SerialName(value = "status")
val status: String