ExportRequest

@Serializable
data class ExportRequest(val bbox: List<List<Double>>, val id: String, val geometry: Boolean? = null)

Request payload for the export endpoint.

Constructors

Link copied to clipboard
constructor(bbox: List<List<Double>>, id: String, geometry: Boolean? = null)

Properties

Link copied to clipboard

Bounding box specified as [[minLon,minLat],[maxLon,maxLat]].

Link copied to clipboard
val geometry: Boolean? = null

Whether to include full geometry in the response.

Link copied to clipboard
val id: String

Client-specified identifier.