AdditionalDataResult

data class AdditionalDataResult(    val providerId: String,     val error: String?,     val geometryData: GeoJsonObject?)

Describes the details of a single result item returned by the Additional Data Search API.

Parameters

providerId

The ID of the returned entity.

error

The reason for the failure to obtain data for this provider.

geometryData

The GeoJSON geometry data. Only present if an "error" is not present.

Important: This is a Public Preview API. It may be changed or removed at any time.

Constructors

Link copied to clipboard
fun AdditionalDataResult(    providerId: String,     error: String?,     geometryData: GeoJsonObject?)

Properties

Link copied to clipboard
val error: String?
Link copied to clipboard
val geometryData: GeoJsonObject?
Link copied to clipboard
val providerId: String