UserDestination

@Serializable
data class UserDestination(val id: Int, val name: String, val startDate: String? = null, val endDate: String? = null, val gatheringId: Int? = null)

用户目的地信息。

Parameters

id

目的地 ID

name

目的地名称

startDate

开始日期

endDate

结束日期

gatheringId

关联聚会 ID

Constructors

Link copied to clipboard
constructor(id: Int, name: String, startDate: String? = null, endDate: String? = null, gatheringId: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "end_date")
val endDate: String?
Link copied to clipboard
@SerialName(value = "gathering_id")
val gatheringId: Int?
Link copied to clipboard
@SerialName(value = "id")
val id: Int
Link copied to clipboard
@SerialName(value = "name")
val name: String
Link copied to clipboard
@SerialName(value = "start_date")
val startDate: String?