GatheringNearbyItem

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

聚会附近项

Parameters

id

聚会 ID

name

聚会名称

location

地点

lat

纬度

lng

经度

distance

距离(公里)

startDate

开始日期(ISO 8601 格式)

endDate

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

status

状态

Constructors

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

Properties

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