ContextResponse

@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)

Constructors

Link copied to clipboard
constructor(address: AddressDataPoint? = null, street: DataPoint? = null, neighborhood: DataPoint? = null, postcode: DataPoint? = null, locality: DataPoint? = null, place: DataPoint? = null, district: DataPoint? = null, region: RegionDataPoint? = null, country: CountryDataPoint? = null)

Properties

Link copied to clipboard
@SerialName(value = "address")
val address: AddressDataPoint? = null
Link copied to clipboard
@SerialName(value = "country")
val country: CountryDataPoint? = null
Link copied to clipboard
@SerialName(value = "district")
val district: DataPoint? = null
Link copied to clipboard
@SerialName(value = "locality")
val locality: DataPoint? = null
Link copied to clipboard
@SerialName(value = "neighbourhood")
val neighborhood: DataPoint? = null
Link copied to clipboard
@SerialName(value = "place")
val place: DataPoint? = null
Link copied to clipboard
@SerialName(value = "postcode")
val postcode: DataPoint? = null
Link copied to clipboard
@SerialName(value = "region")
val region: RegionDataPoint? = null
Link copied to clipboard
@SerialName(value = "street")
val street: DataPoint? = null