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.*
14
14
public data class TimeRange (
15
15
16
16
/* * 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 ,
18
18
19
19
/* * 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 ,
21
21
)
Original file line number Diff line number Diff line change @@ -14,8 +14,8 @@ import kotlinx.serialization.json.*
14
14
public data class TimeRange (
15
15
16
16
/* * 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 ,
18
18
19
19
/* * 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 ,
21
21
)
You can’t perform that action at this time.
0 commit comments