Skip to content

Commit 5642aae

Browse files
algolia-botstevenMevansshortcuts
committed
feat(specs): abtests stopped at (generated)
algolia/api-clients-automation#5275 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Steven Evans <[email protected]> Co-authored-by: Clément Vannicatte <[email protected]>
1 parent cbb732e commit 5642aae

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/main/scala/algoliasearch/abtesting/ABTest.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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],

src/main/scala/algoliasearch/abtestingv3/ABTest.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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],

0 commit comments

Comments
 (0)