
commonMain.com.algolia.client.model.search.TimeRange.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.*
/**
* TimeRange
*
* @param from Lower bound of the time range (Unix timestamp).
* @param until Upper bound of the time range (Unix timestamp).
*/
@Serializable
public data class TimeRange(
/** Lower bound of the time range (Unix timestamp). */
@SerialName(value = "from") val from: Int,
/** Upper bound of the time range (Unix timestamp). */
@SerialName(value = "until") val until: Int,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy