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._
3535 * Date and time when the A/B test was created, in RFC 3339 format.
3636 * @param endAt
3737 * 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.
3840 * @param name
3941 * A/B test name.
4042 * @param variants
@@ -51,6 +53,7 @@ case class ABTest(
5153 updatedAt : String ,
5254 createdAt : String ,
5355 endAt : String ,
56+ stoppedAt : Option [String ] = scala.None ,
5457 name : String ,
5558 status : Status ,
5659 variants : Seq [Variant ],
Original file line number Diff line number Diff line change @@ -36,6 +36,8 @@ import algoliasearch.abtestingv3.Status._
3636 * Date and time when the A/B test was created, in RFC 3339 format.
3737 * @param endAt
3838 * 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.
3941 * @param name
4042 * A/B test name.
4143 * @param variants
@@ -49,6 +51,7 @@ case class ABTest(
4951 updatedAt : String ,
5052 createdAt : String ,
5153 endAt : String ,
54+ stoppedAt : Option [String ] = scala.None ,
5255 name : String ,
5356 status : Status ,
5457 variants : Seq [Variant ],
You can’t perform that action at this time.
0 commit comments