Skip to content

Commit 233ee07

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 94c939a commit 233ee07

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

algoliasearch/abtesting/models/ab_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"updated_at": "updatedAt",
3333
"created_at": "createdAt",
3434
"end_at": "endAt",
35+
"stopped_at": "stoppedAt",
3536
"name": "name",
3637
"status": "status",
3738
"variants": "variants",
@@ -61,6 +62,8 @@ class ABTest(BaseModel):
6162
""" Date and time when the A/B test was created, in RFC 3339 format. """
6263
end_at: str
6364
""" End date and time of the A/B test, in RFC 3339 format. """
65+
stopped_at: Optional[str] = None
66+
""" Date and time when the A/B test was stopped, in RFC 3339 format. """
6467
name: str
6568
""" A/B test name. """
6669
status: Status

algoliasearch/abtesting_v3/models/ab_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"updated_at": "updatedAt",
2828
"created_at": "createdAt",
2929
"end_at": "endAt",
30+
"stopped_at": "stoppedAt",
3031
"name": "name",
3132
"status": "status",
3233
"variants": "variants",
@@ -52,6 +53,8 @@ class ABTest(BaseModel):
5253
""" Date and time when the A/B test was created, in RFC 3339 format. """
5354
end_at: str
5455
""" End date and time of the A/B test, in RFC 3339 format. """
56+
stopped_at: Optional[str] = None
57+
""" Date and time when the A/B test was stopped, in RFC 3339 format. """
5558
name: str
5659
""" A/B test name. """
5760
status: Status

0 commit comments

Comments
 (0)