File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 32
32
"updated_at" : "updatedAt" ,
33
33
"created_at" : "createdAt" ,
34
34
"end_at" : "endAt" ,
35
+ "stopped_at" : "stoppedAt" ,
35
36
"name" : "name" ,
36
37
"status" : "status" ,
37
38
"variants" : "variants" ,
@@ -61,6 +62,8 @@ class ABTest(BaseModel):
61
62
""" Date and time when the A/B test was created, in RFC 3339 format. """
62
63
end_at : str
63
64
""" 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. """
64
67
name : str
65
68
""" A/B test name. """
66
69
status : Status
Original file line number Diff line number Diff line change 27
27
"updated_at" : "updatedAt" ,
28
28
"created_at" : "createdAt" ,
29
29
"end_at" : "endAt" ,
30
+ "stopped_at" : "stoppedAt" ,
30
31
"name" : "name" ,
31
32
"status" : "status" ,
32
33
"variants" : "variants" ,
@@ -52,6 +53,8 @@ class ABTest(BaseModel):
52
53
""" Date and time when the A/B test was created, in RFC 3339 format. """
53
54
end_at : str
54
55
""" 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. """
55
58
name : str
56
59
""" A/B test name. """
57
60
status : Status
You can’t perform that action at this time.
0 commit comments