Package-level declarations

Types

Link copied to clipboard
@Serializable
data class AddressDataPoint(val name: String? = null, val streetName: String? = null, val addressNumber: String? = null)
Link copied to clipboard
@Serializable
data class ContextResponse(val address: AddressDataPoint? = null, val street: DataPoint? = null, val neighborhood: DataPoint? = null, val postcode: DataPoint? = null, val locality: DataPoint? = null, val place: DataPoint? = null, val district: DataPoint? = null, val region: RegionDataPoint? = null, val country: CountryDataPoint? = null)
Link copied to clipboard
@Serializable
data class CoordinatesResponse(val latitude: Double, val longitude: Double)
Link copied to clipboard
@Serializable
data class CountryDataPoint(val name: String? = null, val countryCode: String? = null)
Link copied to clipboard
@Serializable
data class DataPoint(val name: String? = null)
Link copied to clipboard
@Serializable
data class FeatureResponse(val properties: PropertiesResponse? = null)
Link copied to clipboard
@Serializable
data class GeocodeResponse(val features: List<FeatureResponse>)
Link copied to clipboard
@Serializable
data class PropertiesResponse(val name: String? = null, val coordinates: CoordinatesResponse? = null, val context: ContextResponse? = null)
Link copied to clipboard
@Serializable
data class RegionDataPoint(val name: String? = null, val regionCode: String? = null)

Functions

Link copied to clipboard