TicketStop
data class TicketStop(val name: String? = null, val code: String? = null, val iataCode: String? = null, val cityName: String? = null, val timeZone: String? = null, val address: String? = null, val geo: TicketGeo? = null, val terminal: String? = null, val gate: String? = null, val platform: String? = null, val securityPrograms: List<String> = emptyList()) : Parcelable
One end of a journey — an airport, station, stop, or terminal.
gate, terminal and platform describe the journey's use of the place, so in RDF they live on the trip node (schema:departureGate etc.), not on the place; the codec flattens them here for convenience.
Constructors
Link copied to clipboard
constructor(name: String? = null, code: String? = null, iataCode: String? = null, cityName: String? = null, timeZone: String? = null, address: String? = null, geo: TicketGeo? = null, terminal: String? = null, gate: String? = null, platform: String? = null, securityPrograms: List<String> = emptyList())