DistanceMatrixResponse

class DistanceMatrixResponse(    var code: String = "",     var durations: ArrayList<ArrayList<Double>?> = arrayListOf(),     var distances: ArrayList<ArrayList<Double>?> = arrayListOf(),     var destinations: ArrayList<Destinations?> = arrayListOf(),     var sources: ArrayList<Sources?> = arrayListOf())

Constructors

Link copied to clipboard
fun DistanceMatrixResponse(    code: String = "",     durations: ArrayList<ArrayList<Double>?> = arrayListOf(),     distances: ArrayList<ArrayList<Double>?> = arrayListOf(),     destinations: ArrayList<Destinations?> = arrayListOf(),     sources: ArrayList<Sources?> = arrayListOf())

Functions

Properties

Link copied to clipboard
@SerializedName(value = "code")
var code: String
Link copied to clipboard
@SerializedName(value = "destinations")
var destinations: ArrayList<Destinations?>
Link copied to clipboard
@SerializedName(value = "distances")
var distances: ArrayList<ArrayList<Double>?>
Link copied to clipboard
@SerializedName(value = "durations")
var durations: ArrayList<ArrayList<Double>?>
Link copied to clipboard
@SerializedName(value = "sources")
var sources: ArrayList<Sources?>