File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
client/src/commonMain/kotlin/com/algolia/client/model Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ import kotlinx.serialization.json.*
1414public data class TimeRange (
1515
1616 /* * When the rule should start to be active, in Unix epoch time. */
17- @SerialName(value = " from" ) val from : Int ,
17+ @SerialName(value = " from" ) val from : Long ,
1818
1919 /* * When the rule should stop to be active, in Unix epoch time. */
20- @SerialName(value = " until" ) val until : Int ,
20+ @SerialName(value = " until" ) val until : Long ,
2121)
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ import kotlinx.serialization.json.*
1414public data class TimeRange (
1515
1616 /* * When the rule should start to be active, in Unix epoch time. */
17- @SerialName(value = " from" ) val from : Int ,
17+ @SerialName(value = " from" ) val from : Long ,
1818
1919 /* * When the rule should stop to be active, in Unix epoch time. */
20- @SerialName(value = " until" ) val until : Int ,
20+ @SerialName(value = " until" ) val until : Long ,
2121)
You can’t perform that action at this time.
0 commit comments