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
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
3
+
//
4
+
usingSystem;
5
+
usingSystem.Text;
6
+
usingSystem.Linq;
7
+
usingSystem.Text.Json.Serialization;
8
+
usingSystem.Collections.Generic;
9
+
usingAlgolia.Search.Serializer;
10
+
usingSystem.Text.Json;
11
+
12
+
namespaceAlgolia.Search.Models.Abtesting;
13
+
14
+
/// <summary>
15
+
/// ScheduleABTestResponse
16
+
/// </summary>
17
+
publicpartialclassScheduleABTestResponse
18
+
{
19
+
/// <summary>
20
+
/// Initializes a new instance of the ScheduleABTestResponse class.
21
+
/// </summary>
22
+
[JsonConstructor]
23
+
publicScheduleABTestResponse(){}
24
+
/// <summary>
25
+
/// Initializes a new instance of the ScheduleABTestResponse class.
26
+
/// </summary>
27
+
/// <param name="abTestScheduleID">Unique scheduled A/B test identifier. (required).</param>
28
+
publicScheduleABTestResponse(intabTestScheduleID)
29
+
{
30
+
AbTestScheduleID=abTestScheduleID;
31
+
}
32
+
33
+
/// <summary>
34
+
/// Unique scheduled A/B test identifier.
35
+
/// </summary>
36
+
/// <value>Unique scheduled A/B test identifier.</value>
37
+
[JsonPropertyName("abTestScheduleID")]
38
+
publicintAbTestScheduleID{get;set;}
39
+
40
+
/// <summary>
41
+
/// Returns the string presentation of the object
42
+
/// </summary>
43
+
/// <returns>String presentation of the object</returns>
// Code generated by OpenAPI Generator (https://openapi-generator.tech), manual changes will be lost - read more on https://github.com/algolia/api-clients-automation. DO NOT EDIT.
3
+
//
4
+
usingSystem;
5
+
usingSystem.Text;
6
+
usingSystem.Linq;
7
+
usingSystem.Text.Json.Serialization;
8
+
usingSystem.Collections.Generic;
9
+
usingAlgolia.Search.Serializer;
10
+
usingSystem.Text.Json;
11
+
12
+
namespaceAlgolia.Search.Models.Abtesting;
13
+
14
+
/// <summary>
15
+
/// ScheduleABTestsRequest
16
+
/// </summary>
17
+
publicpartialclassScheduleABTestsRequest
18
+
{
19
+
/// <summary>
20
+
/// Initializes a new instance of the ScheduleABTestsRequest class.
21
+
/// </summary>
22
+
[JsonConstructor]
23
+
publicScheduleABTestsRequest(){}
24
+
/// <summary>
25
+
/// Initializes a new instance of the ScheduleABTestsRequest class.
26
+
/// </summary>
27
+
/// <param name="name">A/B test name. (required).</param>
28
+
/// <param name="variants">A/B test variants. (required).</param>
29
+
/// <param name="scheduledAt">Date and time when the A/B test is scheduled to start, in RFC 3339 format. (required).</param>
30
+
/// <param name="endAt">End date and time of the A/B test, in RFC 3339 format. (required).</param>
0 commit comments