MapsIndoorsAndroid
MapboxAdapter
/
com.mapsindoors.mapbox.services.directions.data
/
RouteResponse
Route
Response
class
RouteResponse
(
var
routes
:
ArrayList
<
Routes
>
=
arrayListOf()
,
var
waypoints
:
ArrayList
<
Waypoints
>
=
arrayListOf()
,
var
code
:
String
?
=
null
,
var
uuid
:
String
?
=
null
)
Constructors
Functions
Properties
Constructors
Route
Response
Link copied to clipboard
fun
RouteResponse
(
routes
:
ArrayList
<
Routes
>
=
arrayListOf()
,
waypoints
:
ArrayList
<
Waypoints
>
=
arrayListOf()
,
code
:
String
?
=
null
,
uuid
:
String
?
=
null
)
Functions
to
MPRoute
Link copied to clipboard
fun
toMPRoute
(
)
:
MPRoute
?
Properties
code
Link copied to clipboard
@
SerializedName
(
value
=
"code"
)
var
code
:
String
?
=
null
routes
Link copied to clipboard
@
SerializedName
(
value
=
"routes"
)
var
routes
:
ArrayList
<
Routes
>
uuid
Link copied to clipboard
@
SerializedName
(
value
=
"uuid"
)
var
uuid
:
String
?
=
null
waypoints
Link copied to clipboard
@
SerializedName
(
value
=
"waypoints"
)
var
waypoints
:
ArrayList
<
Waypoints
>