We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26c3142 commit 0afec08Copy full SHA for 0afec08
src/main/scala/algoliasearch/recommend/TimeRange.scala
@@ -37,6 +37,6 @@ package algoliasearch.recommend
37
* When the rule should stop to be active, in Unix epoch time.
38
*/
39
case class TimeRange(
40
- from: Long,
41
- until: Long
+ from: Option[Long] = scala.None,
+ until: Option[Long] = scala.None
42
)
src/main/scala/algoliasearch/search/TimeRange.scala
@@ -41,6 +41,6 @@ package algoliasearch.search
43
44
45
46
0 commit comments