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: ShipEngineSDK/Api/BatchesApi.cs
+37-5Lines changed: 37 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -163,13 +163,17 @@ public partial interface IShipEngine
163
163
/// <exception cref="ShipEngineSDK.ShipEngineException">Thrown when fails to make API call</exception>
164
164
/// <param name="status"> (optional)</param>
165
165
/// <param name="sortBy"> (optional)</param>
166
+
/// <param name="createdAtStart">Only return batches that were created on or after a specific date/time (optional)</param>
167
+
/// <param name="createdAtEnd">Only return batches that were created on or before a specific date/time (optional)</param>
168
+
/// <param name="processedAtStart">Only return batches that were processed on or after a specific date/time (optional)</param>
169
+
/// <param name="processedAtEnd">Only return batches that were processed on or before a specific date/time (optional)</param>
166
170
/// <param name="sortDir">Controls the sort order of the query. (optional)</param>
167
171
/// <param name="batchNumber">Batch Number (optional)</param>
168
172
/// <param name="page">Return a specific page of results. Defaults to the first page. If set to a number that's greater than the number of pages of results, an empty page is returned. (optional, default to 1)</param>
169
173
/// <param name="pageSize">The number of results to return per response. (optional, default to 25)</param>
170
174
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
171
175
/// <returns>Task of ApiResponse (ListBatchesResponseBody)</returns>
/// List Batches List Batches associated with your Shipengine account
@@ -179,13 +183,17 @@ public partial interface IShipEngine
179
183
/// <param name="methodClient">HttpClient to use for the request</param>
180
184
/// <param name="status"> (optional)</param>
181
185
/// <param name="sortBy"> (optional)</param>
186
+
/// <param name="createdAtStart">Only return batches that were created on or after a specific date/time (optional)</param>
187
+
/// <param name="createdAtEnd">Only return batches that were created on or before a specific date/time (optional)</param>
188
+
/// <param name="processedAtStart">Only return batches that were processed on or after a specific date/time (optional)</param>
189
+
/// <param name="processedAtEnd">Only return batches that were processed on or before a specific date/time (optional)</param>
182
190
/// <param name="sortDir">Controls the sort order of the query. (optional)</param>
183
191
/// <param name="batchNumber">Batch Number (optional)</param>
184
192
/// <param name="page">Return a specific page of results. Defaults to the first page. If set to a number that's greater than the number of pages of results, an empty page is returned. (optional, default to 1)</param>
185
193
/// <param name="pageSize">The number of results to return per response. (optional, default to 25)</param>
186
194
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
187
195
/// <returns>Task of ApiResponse (ListBatchesResponseBody)</returns>
/// Process Batch ID Labels Process Batch ID Labels
@@ -541,15 +549,19 @@ public async Task<ListBatchErrorsResponseBody> ListBatchErrors(HttpClient method
541
549
/// <exception cref="ShipEngineSDK.ShipEngineException">Thrown when fails to make API call</exception>
542
550
/// <param name="status"> (optional)</param>
543
551
/// <param name="sortBy"> (optional)</param>
552
+
/// <param name="createdAtStart">Only return batches that were created on or after a specific date/time (optional)</param>
553
+
/// <param name="createdAtEnd">Only return batches that were created on or before a specific date/time (optional)</param>
554
+
/// <param name="processedAtStart">Only return batches that were processed on or after a specific date/time (optional)</param>
555
+
/// <param name="processedAtEnd">Only return batches that were processed on or before a specific date/time (optional)</param>
544
556
/// <param name="sortDir">Controls the sort order of the query. (optional)</param>
545
557
/// <param name="batchNumber">Batch Number (optional)</param>
546
558
/// <param name="page">Return a specific page of results. Defaults to the first page. If set to a number that's greater than the number of pages of results, an empty page is returned. (optional, default to 1)</param>
547
559
/// <param name="pageSize">The number of results to return per response. (optional, default to 25)</param>
548
560
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
549
561
/// <returns>Task of ApiResponse (ListBatchesResponseBody)</returns>
@@ -560,13 +572,17 @@ public Task<ListBatchesResponseBody> ListBatches(BatchStatus? status = default,
560
572
/// <param name="methodClient">HttpClient to use for the request</param>
561
573
/// <param name="status"> (optional)</param>
562
574
/// <param name="sortBy"> (optional)</param>
575
+
/// <param name="createdAtStart">Only return batches that were created on or after a specific date/time (optional)</param>
576
+
/// <param name="createdAtEnd">Only return batches that were created on or before a specific date/time (optional)</param>
577
+
/// <param name="processedAtStart">Only return batches that were processed on or after a specific date/time (optional)</param>
578
+
/// <param name="processedAtEnd">Only return batches that were processed on or before a specific date/time (optional)</param>
563
579
/// <param name="sortDir">Controls the sort order of the query. (optional)</param>
564
580
/// <param name="batchNumber">Batch Number (optional)</param>
565
581
/// <param name="page">Return a specific page of results. Defaults to the first page. If set to a number that's greater than the number of pages of results, an empty page is returned. (optional, default to 1)</param>
566
582
/// <param name="pageSize">The number of results to return per response. (optional, default to 25)</param>
567
583
/// <param name="cancellationToken">Cancellation Token to cancel the request.</param>
568
584
/// <returns>Task of ApiResponse (ListBatchesResponseBody)</returns>
0 commit comments