Trip

data class Trip(val routeId: String, val serviceId: String, val tripId: String, val tripHeadsign: String? = null, val tripShortName: String? = null, val directionId: Int? = null, val blockId: String? = null, val shapeId: String? = null, val wheelchairAccessible: Int? = null, val bikesAllowed: Int? = null)

See https://developers.google.com/transit/gtfs/reference#tripstxt

Constructors

Link copied to clipboard
constructor(routeId: String, serviceId: String, tripId: String, tripHeadsign: String? = null, tripShortName: String? = null, directionId: Int? = null, blockId: String? = null, shapeId: String? = null, wheelchairAccessible: Int? = null, bikesAllowed: Int? = null)

Properties

Link copied to clipboard
val bikesAllowed: Int? = null
Link copied to clipboard
val blockId: String? = null
Link copied to clipboard
val directionId: Int? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val shapeId: String? = null
Link copied to clipboard
val tripHeadsign: String? = null
Link copied to clipboard
Link copied to clipboard
val tripShortName: String? = null
Link copied to clipboard