File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
src/main/scala/algoliasearch Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -35,6 +35,8 @@ import algoliasearch.abtesting.Status._
35
35
* Date and time when the A/B test was created, in RFC 3339 format.
36
36
* @param endAt
37
37
* End date and time of the A/B test, in RFC 3339 format.
38
+ * @param stoppedAt
39
+ * Date and time when the A/B test was stopped, in RFC 3339 format.
38
40
* @param name
39
41
* A/B test name.
40
42
* @param variants
@@ -51,6 +53,7 @@ case class ABTest(
51
53
updatedAt : String ,
52
54
createdAt : String ,
53
55
endAt : String ,
56
+ stoppedAt : Option [String ] = scala.None ,
54
57
name : String ,
55
58
status : Status ,
56
59
variants : Seq [Variant ],
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ import algoliasearch.abtestingv3.Status._
36
36
* Date and time when the A/B test was created, in RFC 3339 format.
37
37
* @param endAt
38
38
* End date and time of the A/B test, in RFC 3339 format.
39
+ * @param stoppedAt
40
+ * Date and time when the A/B test was stopped, in RFC 3339 format.
39
41
* @param name
40
42
* A/B test name.
41
43
* @param variants
@@ -49,6 +51,7 @@ case class ABTest(
49
51
updatedAt : String ,
50
52
createdAt : String ,
51
53
endAt : String ,
54
+ stoppedAt : Option [String ] = scala.None ,
52
55
name : String ,
53
56
status : Status ,
54
57
variants : Seq [Variant ],
You can’t perform that action at this time.
0 commit comments