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.
// 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.Ingestion;
13
+
14
+
/// <summary>
15
+
/// RunSourcePayload
16
+
/// </summary>
17
+
publicpartialclassRunSourcePayload
18
+
{
19
+
20
+
/// <summary>
21
+
/// Gets or Sets EntityType
22
+
/// </summary>
23
+
[JsonPropertyName("entityType")]
24
+
publicEntityType?EntityType{get;set;}
25
+
/// <summary>
26
+
/// Initializes a new instance of the RunSourcePayload class.
27
+
/// </summary>
28
+
publicRunSourcePayload()
29
+
{
30
+
}
31
+
32
+
/// <summary>
33
+
/// List of index names to include in reidexing/update.
34
+
/// </summary>
35
+
/// <value>List of index names to include in reidexing/update.</value>
36
+
[JsonPropertyName("indexToInclude")]
37
+
publicList<string>IndexToInclude{get;set;}
38
+
39
+
/// <summary>
40
+
/// List of index names to exclude in reidexing/update.
41
+
/// </summary>
42
+
/// <value>List of index names to exclude in reidexing/update.</value>
43
+
[JsonPropertyName("indexToExclude")]
44
+
publicList<string>IndexToExclude{get;set;}
45
+
46
+
/// <summary>
47
+
/// List of entityID to update.
48
+
/// </summary>
49
+
/// <value>List of entityID to update.</value>
50
+
[JsonPropertyName("entityIDs")]
51
+
publicList<string>EntityIDs{get;set;}
52
+
53
+
/// <summary>
54
+
/// Returns the string presentation of the object
55
+
/// </summary>
56
+
/// <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.Ingestion;
13
+
14
+
/// <summary>
15
+
/// RunSourceResponse
16
+
/// </summary>
17
+
publicpartialclassRunSourceResponse
18
+
{
19
+
/// <summary>
20
+
/// Initializes a new instance of the RunSourceResponse class.
21
+
/// </summary>
22
+
[JsonConstructor]
23
+
publicRunSourceResponse(){}
24
+
/// <summary>
25
+
/// Initializes a new instance of the RunSourceResponse class.
26
+
/// </summary>
27
+
/// <param name="taskWithRunID">Map of taskID sent for reindex with the corresponding runID. (required).</param>
28
+
/// <param name="createdAt">Date of creation in RFC 3339 format. (required).</param>
0 commit comments