Closure

@Serializable
data class Closure(val geometryIndexStart: Int? = null, val geometryIndexEnd: Int? = null)

An object indicating the geometry indexes defining a road closure.

Constructors

Link copied to clipboard
constructor(geometryIndexStart: Int? = null, geometryIndexEnd: Int? = null)

Types

Link copied to clipboard
class Builder

Builder class for creating Closure instances.

Properties

Link copied to clipboard
@SerialName(value = "geometry_index_end")
val geometryIndexEnd: Int? = null

Closure's geometry index end point.

Link copied to clipboard
@SerialName(value = "geometry_index_start")
val geometryIndexStart: Int? = null

Closure's geometry index start point.

Functions

Link copied to clipboard

Creates a builder initialized with the current values of the Closure instance.