ORS Android Client
Toggle table of contents
androidJvm
Platform filter
androidJvm
Switch theme
Search in API
ORS Android Client
ORS Android Client
/
org.nitri.ors.domain.route
/
Step
Step
@
Serializable
data
class
Step
(
val
distance
:
Double
,
val
duration
:
Double
,
val
instruction
:
String
,
val
name
:
String
,
val
type
:
Int
,
val
wayPoints
:
List
<
Int
>
,
val
exitNumber
:
Int
?
=
null
)
Turn instruction within a segment.
Members
Constructors
Step
Link copied to clipboard
constructor
(
distance
:
Double
,
duration
:
Double
,
instruction
:
String
,
name
:
String
,
type
:
Int
,
wayPoints
:
List
<
Int
>
,
exitNumber
:
Int
?
=
null
)
Properties
distance
Link copied to clipboard
val
distance
:
Double
duration
Link copied to clipboard
val
duration
:
Double
exit
Number
Link copied to clipboard
@
SerialName
(
value
=
"exit_number"
)
val
exitNumber
:
Int
?
=
null
instruction
Link copied to clipboard
val
instruction
:
String
name
Link copied to clipboard
val
name
:
String
type
Link copied to clipboard
val
type
:
Int
way
Points
Link copied to clipboard
@
SerialName
(
value
=
"way_points"
)
val
wayPoints
:
List
<
Int
>