RouteResponse

class RouteResponse(    var routes: ArrayList<Routes> = arrayListOf(),     var waypoints: ArrayList<Waypoints> = arrayListOf(),     var code: String? = null,     var uuid: String? = null)

Constructors

Link copied to clipboard
fun RouteResponse(    routes: ArrayList<Routes> = arrayListOf(),     waypoints: ArrayList<Waypoints> = arrayListOf(),     code: String? = null,     uuid: String? = null)

Functions

Link copied to clipboard
fun toMPRoute(): MPRoute?

Properties

Link copied to clipboard
@SerializedName(value = "code")
var code: String? = null
Link copied to clipboard
@SerializedName(value = "routes")
var routes: ArrayList<Routes>
Link copied to clipboard
@SerializedName(value = "uuid")
var uuid: String? = null
Link copied to clipboard
@SerializedName(value = "waypoints")
var waypoints: ArrayList<Waypoints>