commonMain.com.algolia.client.model.search.Range.kt Maven / Gradle / Ivy
/** Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT. */
package com.algolia.client.model.search
import kotlinx.serialization.*
import kotlinx.serialization.json.*
/**
* Range object with lower and upper values in meters to define custom ranges.
*
* @param from Lower boundary of a range in meters. The Geo ranking criterion considers all records within the range to be equal.
* @param `value` Upper boundary of a range in meters. The Geo ranking criterion considers all records within the range to be equal.
*/
@Serializable
public data class Range(
/** Lower boundary of a range in meters. The Geo ranking criterion considers all records within the range to be equal. */
@SerialName(value = "from") val from: Int? = null,
/** Upper boundary of a range in meters. The Geo ranking criterion considers all records within the range to be equal. */
@SerialName(value = "value") val `value`: Int? = null,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy