Skip to content

Commit 78b5532

Browse files
Merge pull request #175 from CyberSource/june-2024-release
June 2024 release
2 parents b318784 + 9d2c528 commit 78b5532

File tree

41 files changed

+413
-126
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+413
-126
lines changed

Api/InvoicesApi.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public interface IInvoicesApi : IApiAccessor
5757
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
5858
/// <param name="offset">Page offset number.</param>
5959
/// <param name="limit">Maximum number of items you would like returned.</param>
60-
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED (optional)</param>
60+
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED - PENDING (optional)</param>
6161
/// <returns>InvoicingV2InvoicesAllGet200Response</returns>
6262
InvoicingV2InvoicesAllGet200Response GetAllInvoices (int? offset, int? limit, string status = null);
6363

@@ -70,7 +70,7 @@ public interface IInvoicesApi : IApiAccessor
7070
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
7171
/// <param name="offset">Page offset number.</param>
7272
/// <param name="limit">Maximum number of items you would like returned.</param>
73-
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED (optional)</param>
73+
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED - PENDING (optional)</param>
7474
/// <returns>ApiResponse of InvoicingV2InvoicesAllGet200Response</returns>
7575
ApiResponse<InvoicingV2InvoicesAllGet200Response> GetAllInvoicesWithHttpInfo (int? offset, int? limit, string status = null);
7676
/// <summary>
@@ -191,7 +191,7 @@ public interface IInvoicesApi : IApiAccessor
191191
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
192192
/// <param name="offset">Page offset number.</param>
193193
/// <param name="limit">Maximum number of items you would like returned.</param>
194-
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED (optional)</param>
194+
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED - PENDING (optional)</param>
195195
/// <returns>Task of InvoicingV2InvoicesAllGet200Response</returns>
196196
System.Threading.Tasks.Task<InvoicingV2InvoicesAllGet200Response> GetAllInvoicesAsync (int? offset, int? limit, string status = null);
197197

@@ -204,7 +204,7 @@ public interface IInvoicesApi : IApiAccessor
204204
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
205205
/// <param name="offset">Page offset number.</param>
206206
/// <param name="limit">Maximum number of items you would like returned.</param>
207-
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED (optional)</param>
207+
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED - PENDING (optional)</param>
208208
/// <returns>Task of ApiResponse (InvoicingV2InvoicesAllGet200Response)</returns>
209209
System.Threading.Tasks.Task<ApiResponse<InvoicingV2InvoicesAllGet200Response>> GetAllInvoicesAsyncWithHttpInfo (int? offset, int? limit, string status = null);
210210
/// <summary>
@@ -645,7 +645,7 @@ public async System.Threading.Tasks.Task<ApiResponse<InvoicingV2InvoicesPost201R
645645
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
646646
/// <param name="offset">Page offset number.</param>
647647
/// <param name="limit">Maximum number of items you would like returned.</param>
648-
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED (optional)</param>
648+
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED - PENDING (optional)</param>
649649
/// <returns>InvoicingV2InvoicesAllGet200Response</returns>
650650
public InvoicingV2InvoicesAllGet200Response GetAllInvoices (int? offset, int? limit, string status = null)
651651
{
@@ -663,7 +663,7 @@ public InvoicingV2InvoicesAllGet200Response GetAllInvoices (int? offset, int? li
663663
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
664664
/// <param name="offset">Page offset number.</param>
665665
/// <param name="limit">Maximum number of items you would like returned.</param>
666-
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED (optional)</param>
666+
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED - PENDING (optional)</param>
667667
/// <returns>ApiResponse of InvoicingV2InvoicesAllGet200Response</returns>
668668
public ApiResponse< InvoicingV2InvoicesAllGet200Response > GetAllInvoicesWithHttpInfo (int? offset, int? limit, string status = null)
669669
{
@@ -762,7 +762,7 @@ public ApiResponse< InvoicingV2InvoicesAllGet200Response > GetAllInvoicesWithHtt
762762
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
763763
/// <param name="offset">Page offset number.</param>
764764
/// <param name="limit">Maximum number of items you would like returned.</param>
765-
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED (optional)</param>
765+
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED - PENDING (optional)</param>
766766
/// <returns>Task of InvoicingV2InvoicesAllGet200Response</returns>
767767
public async System.Threading.Tasks.Task<InvoicingV2InvoicesAllGet200Response> GetAllInvoicesAsync (int? offset, int? limit, string status = null)
768768
{
@@ -781,7 +781,7 @@ public async System.Threading.Tasks.Task<InvoicingV2InvoicesAllGet200Response> G
781781
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
782782
/// <param name="offset">Page offset number.</param>
783783
/// <param name="limit">Maximum number of items you would like returned.</param>
784-
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED (optional)</param>
784+
/// <param name="status">The status of the invoice. Possible values: - DRAFT - CREATED - SENT - PARTIAL - PAID - CANCELED - PENDING (optional)</param>
785785
/// <returns>Task of ApiResponse (InvoicingV2InvoicesAllGet200Response)</returns>
786786
public async System.Threading.Tasks.Task<ApiResponse<InvoicingV2InvoicesAllGet200Response>> GetAllInvoicesAsyncWithHttpInfo (int? offset, int? limit, string status = null)
787787
{

0 commit comments

Comments
 (0)