Skip to content

Commit 9e0448c

Browse files
authored
Merge pull request #121 from snavinch/master
+ SDK Changes for October 2021 Release
2 parents 694c8e0 + 503bc43 commit 9e0448c

File tree

462 files changed

+8887
-10300
lines changed

Some content is hidden

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

462 files changed

+8887
-10300
lines changed

Api/ChargebackDetailsApi.cs

Lines changed: 408 additions & 0 deletions
Large diffs are not rendered by default.

Api/ChargebackSummariesApi.cs

Lines changed: 408 additions & 0 deletions
Large diffs are not rendered by default.

Api/ConversionDetailsApi.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public interface IConversionDetailsApi : IApiAccessor
3535
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
3636
/// <param name="startTime">Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
3737
/// <param name="endTime">Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
38-
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
38+
/// <param name="organizationId">Valid Organization Id (optional)</param>
3939
/// <returns>ReportingV3ConversionDetailsGet200Response</returns>
4040
ReportingV3ConversionDetailsGet200Response GetConversionDetail (DateTime? startTime, DateTime? endTime, string organizationId = null);
4141

@@ -48,7 +48,7 @@ public interface IConversionDetailsApi : IApiAccessor
4848
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
4949
/// <param name="startTime">Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
5050
/// <param name="endTime">Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
51-
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
51+
/// <param name="organizationId">Valid Organization Id (optional)</param>
5252
/// <returns>ApiResponse of ReportingV3ConversionDetailsGet200Response</returns>
5353
ApiResponse<ReportingV3ConversionDetailsGet200Response> GetConversionDetailWithHttpInfo (DateTime? startTime, DateTime? endTime, string organizationId = null);
5454
#endregion Synchronous Operations
@@ -62,7 +62,7 @@ public interface IConversionDetailsApi : IApiAccessor
6262
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
6363
/// <param name="startTime">Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
6464
/// <param name="endTime">Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
65-
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
65+
/// <param name="organizationId">Valid Organization Id (optional)</param>
6666
/// <returns>Task of ReportingV3ConversionDetailsGet200Response</returns>
6767
System.Threading.Tasks.Task<ReportingV3ConversionDetailsGet200Response> GetConversionDetailAsync (DateTime? startTime, DateTime? endTime, string organizationId = null);
6868

@@ -75,7 +75,7 @@ public interface IConversionDetailsApi : IApiAccessor
7575
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
7676
/// <param name="startTime">Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
7777
/// <param name="endTime">Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
78-
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
78+
/// <param name="organizationId">Valid Organization Id (optional)</param>
7979
/// <returns>Task of ApiResponse (ReportingV3ConversionDetailsGet200Response)</returns>
8080
System.Threading.Tasks.Task<ApiResponse<ReportingV3ConversionDetailsGet200Response>> GetConversionDetailAsyncWithHttpInfo (DateTime? startTime, DateTime? endTime, string organizationId = null);
8181
#endregion Asynchronous Operations
@@ -204,7 +204,7 @@ public void AddDefaultHeader(string key, string value)
204204
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
205205
/// <param name="startTime">Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
206206
/// <param name="endTime">Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
207-
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
207+
/// <param name="organizationId">Valid Organization Id (optional)</param>
208208
/// <returns>ReportingV3ConversionDetailsGet200Response</returns>
209209
public ReportingV3ConversionDetailsGet200Response GetConversionDetail (DateTime? startTime, DateTime? endTime, string organizationId = null)
210210
{
@@ -220,7 +220,7 @@ public ReportingV3ConversionDetailsGet200Response GetConversionDetail (DateTime?
220220
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
221221
/// <param name="startTime">Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
222222
/// <param name="endTime">Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
223-
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
223+
/// <param name="organizationId">Valid Organization Id (optional)</param>
224224
/// <returns>ApiResponse of ReportingV3ConversionDetailsGet200Response</returns>
225225
public ApiResponse< ReportingV3ConversionDetailsGet200Response > GetConversionDetailWithHttpInfo (DateTime? startTime, DateTime? endTime, string organizationId = null)
226226
{
@@ -307,7 +307,7 @@ public ApiResponse< ReportingV3ConversionDetailsGet200Response > GetConversionDe
307307
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
308308
/// <param name="startTime">Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
309309
/// <param name="endTime">Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
310-
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
310+
/// <param name="organizationId">Valid Organization Id (optional)</param>
311311
/// <returns>Task of ReportingV3ConversionDetailsGet200Response</returns>
312312
public async System.Threading.Tasks.Task<ReportingV3ConversionDetailsGet200Response> GetConversionDetailAsync (DateTime? startTime, DateTime? endTime, string organizationId = null)
313313
{
@@ -324,7 +324,7 @@ public async System.Threading.Tasks.Task<ReportingV3ConversionDetailsGet200Respo
324324
/// <exception cref="CyberSource.Client.ApiException">Thrown when fails to make API call</exception>
325325
/// <param name="startTime">Valid report Start Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
326326
/// <param name="endTime">Valid report End Time in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example date format:** - yyyy-MM-dd&#39;T&#39;HH:mm:ss.SSSZ (e.g. 2018-01-01T00:00:00.000Z) </param>
327-
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
327+
/// <param name="organizationId">Valid Organization Id (optional)</param>
328328
/// <returns>Task of ApiResponse (ReportingV3ConversionDetailsGet200Response)</returns>
329329
public async System.Threading.Tasks.Task<ApiResponse<ReportingV3ConversionDetailsGet200Response>> GetConversionDetailAsyncWithHttpInfo (DateTime? startTime, DateTime? endTime, string organizationId = null)
330330
{

0 commit comments

Comments
 (0)