You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: algoliasearch/Models/Abtesting/EstimateABTestResponse.cs
+10-17Lines changed: 10 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -31,18 +31,11 @@ public EstimateABTestResponse()
31
31
publiclong?DurationDays{get;set;}
32
32
33
33
/// <summary>
34
-
/// Number of tracked searches needed to be able to detect the configured effect for the control variant.
34
+
/// Sample size estimates for each variant. The first element is the control variant. Each element is the estimated number of searches required to achieve the desired statistical significance.
35
35
/// </summary>
36
-
/// <value>Number of tracked searches needed to be able to detect the configured effect for the control variant.</value>
37
-
[JsonPropertyName("controlSampleSize")]
38
-
publiclong?ControlSampleSize{get;set;}
39
-
40
-
/// <summary>
41
-
/// Number of tracked searches needed to be able to detect the configured effect for the experiment variant.
42
-
/// </summary>
43
-
/// <value>Number of tracked searches needed to be able to detect the configured effect for the experiment variant.</value>
44
-
[JsonPropertyName("experimentSampleSize")]
45
-
publiclong?ExperimentSampleSize{get;set;}
36
+
/// <value>Sample size estimates for each variant. The first element is the control variant. Each element is the estimated number of searches required to achieve the desired statistical significance. </value>
37
+
[JsonPropertyName("sampleSizes")]
38
+
publicList<long>SampleSizes{get;set;}
46
39
47
40
/// <summary>
48
41
/// Returns the string presentation of the object
@@ -53,8 +46,7 @@ public override string ToString()
0 commit comments