Maneuver

data class Maneuver(    var type: String? = null,     var instruction: String? = null,     var bearingAfter: Int? = null,     var bearingBefore: Int? = null,     var location: ArrayList<Double> = arrayListOf())

Constructors

Link copied to clipboard
fun Maneuver(    type: String? = null,     instruction: String? = null,     bearingAfter: Int? = null,     bearingBefore: Int? = null,     location: ArrayList<Double> = arrayListOf())

Properties

Link copied to clipboard
@SerializedName(value = "bearing_after")
var bearingAfter: Int? = null
Link copied to clipboard
@SerializedName(value = "bearing_before")
var bearingBefore: Int? = null
Link copied to clipboard
@SerializedName(value = "instruction")
var instruction: String? = null
Link copied to clipboard
@SerializedName(value = "location")
var location: ArrayList<Double>
Link copied to clipboard
@SerializedName(value = "type")
var type: String? = null