-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(csharp): add chunked batch (#2795)
- Loading branch information
1 parent
1348364
commit 18e8248
Showing
4 changed files
with
127 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.0.18 | ||
1.0.19 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
clients/algoliasearch-client-csharp/algoliasearch/Utils/ReplaceAllObjectsResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
using System.Collections.Generic; | ||
using Algolia.Search.Models.Search; | ||
|
||
namespace Algolia.Search.Utils; | ||
|
||
/// <summary> | ||
/// All responses from the ReplaceAllObjects calls. | ||
/// </summary> | ||
public class ReplaceAllObjectsResponse | ||
{ | ||
/// <summary> | ||
/// The response of the copy operation. | ||
/// </summary> | ||
public UpdatedAtResponse CopyOperationResponse { get; set; } | ||
|
||
/// <summary> | ||
/// The response of the batch operations. | ||
/// </summary> | ||
public List<BatchResponse> BatchResponses { get; set; } | ||
|
||
/// <summary> | ||
/// The response of the move operation. | ||
/// </summary> | ||
public UpdatedAtResponse MoveOperationResponse { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters