TransitRoute

data class TransitRoute(val notice: String, val duration: Double, val legs: List<TransitLeg>)

Constructors

Link copied to clipboard
constructor(notice: String, duration: Double, legs: List<TransitLeg>)

Properties

Link copied to clipboard
@SerializedName(value = "duration")
val duration: Double
Link copied to clipboard
@SerializedName(value = "legs")
val legs: List<TransitLeg>
Link copied to clipboard
@SerializedName(value = "notice")
val notice: String