Skip to content

Commit

Permalink
Resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
ksharma-xyz committed Sep 20, 2024
1 parent 2cdcf9d commit d054212
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,12 @@ data class TripResponse(
@SerialName("origin") val origin: StopSequenceClass,
@SerialName("destination") val destination: StopSequenceClass,
@SerialName("pathDescriptions") val pathDescriptions: List<PathDescription>? = null,
@SerialName("isRealtimeControlled") val isRealtimeControlled: Boolean,
@SerialName("isRealtimeControlled") val isRealtimeControlled: Boolean? = null,
@SerialName("transportation") val transportation: Transportation,

/**
* In seconds
*/
@SerialName("duration") val duration: Long,
@SerialName("footPathInfo") val footPathInfo: List<FootPathInfo>? = null,
@SerialName("coords") val coords: List<List<Double>>,
Expand Down

0 comments on commit d054212

Please sign in to comment.