Skip to content

Commit 2fb0796

Browse files
authored
Merge pull request #78 from CyberSource/dec2019_release
Dec2019 release
2 parents 9cee01d + bac43ec commit 2fb0796

File tree

391 files changed

+32740
-3101
lines changed

Some content is hidden

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

391 files changed

+32740
-3101
lines changed

Api/AuthenticationExemptionsApi.cs

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

Api/PayerAuthenticationApi.cs

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

Api/ReportDefinitionsApi.cs

Lines changed: 50 additions & 20 deletions
Large diffs are not rendered by default.

Api/ReportDownloadsApi.cs

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ public interface IReportDownloadsApi : IApiAccessor
3434
/// <param name="reportDate">Valid date on which to download the report 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 </param>
3535
/// <param name="reportName">Name of the report to download</param>
3636
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
37+
/// <param name="reportTime">Valid time on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Time Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example time format:** - hh:mm:ss±hh:mm (optional)</param>
3738
/// <returns></returns>
38-
void DownloadReport (DateTime? reportDate, string reportName, string organizationId = null);
39+
void DownloadReport (DateTime? reportDate, string reportName, string organizationId = null, string reportTime = null);
3940

4041
/// <summary>
4142
/// Download a report
@@ -47,8 +48,9 @@ public interface IReportDownloadsApi : IApiAccessor
4748
/// <param name="reportDate">Valid date on which to download the report 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 </param>
4849
/// <param name="reportName">Name of the report to download</param>
4950
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
51+
/// <param name="reportTime">Valid time on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Time Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example time format:** - hh:mm:ss±hh:mm (optional)</param>
5052
/// <returns>ApiResponse of Object(void)</returns>
51-
ApiResponse<Object> DownloadReportWithHttpInfo (DateTime? reportDate, string reportName, string organizationId = null);
53+
ApiResponse<Object> DownloadReportWithHttpInfo (DateTime? reportDate, string reportName, string organizationId = null, string reportTime = null);
5254
#endregion Synchronous Operations
5355
#region Asynchronous Operations
5456
/// <summary>
@@ -61,8 +63,9 @@ public interface IReportDownloadsApi : IApiAccessor
6163
/// <param name="reportDate">Valid date on which to download the report 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 </param>
6264
/// <param name="reportName">Name of the report to download</param>
6365
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
66+
/// <param name="reportTime">Valid time on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Time Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example time format:** - hh:mm:ss±hh:mm (optional)</param>
6467
/// <returns>Task of void</returns>
65-
System.Threading.Tasks.Task DownloadReportAsync (DateTime? reportDate, string reportName, string organizationId = null);
68+
System.Threading.Tasks.Task DownloadReportAsync (DateTime? reportDate, string reportName, string organizationId = null, string reportTime = null);
6669

6770
/// <summary>
6871
/// Download a report
@@ -74,8 +77,9 @@ public interface IReportDownloadsApi : IApiAccessor
7477
/// <param name="reportDate">Valid date on which to download the report 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 </param>
7578
/// <param name="reportName">Name of the report to download</param>
7679
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
80+
/// <param name="reportTime">Valid time on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Time Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example time format:** - hh:mm:ss±hh:mm (optional)</param>
7781
/// <returns>Task of ApiResponse</returns>
78-
System.Threading.Tasks.Task<ApiResponse<Object>> DownloadReportAsyncWithHttpInfo (DateTime? reportDate, string reportName, string organizationId = null);
82+
System.Threading.Tasks.Task<ApiResponse<Object>> DownloadReportAsyncWithHttpInfo (DateTime? reportDate, string reportName, string organizationId = null, string reportTime = null);
7983
#endregion Asynchronous Operations
8084
}
8185

@@ -191,10 +195,11 @@ public void AddDefaultHeader(string key, string value)
191195
/// <param name="reportDate">Valid date on which to download the report 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 </param>
192196
/// <param name="reportName">Name of the report to download</param>
193197
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
198+
/// <param name="reportTime">Valid time on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Time Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example time format:** - hh:mm:ss±hh:mm (optional)</param>
194199
/// <returns></returns>
195-
public void DownloadReport (DateTime? reportDate, string reportName, string organizationId = null)
200+
public void DownloadReport (DateTime? reportDate, string reportName, string organizationId = null, string reportTime = null)
196201
{
197-
DownloadReportWithHttpInfo(reportDate, reportName, organizationId);
202+
DownloadReportWithHttpInfo(reportDate, reportName, organizationId, reportTime);
198203
}
199204

200205
/// <summary>
@@ -204,8 +209,9 @@ public void DownloadReport (DateTime? reportDate, string reportName, string orga
204209
/// <param name="reportDate">Valid date on which to download the report 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 </param>
205210
/// <param name="reportName">Name of the report to download</param>
206211
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
212+
/// <param name="reportTime">Valid time on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Time Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example time format:** - hh:mm:ss±hh:mm (optional)</param>
207213
/// <returns>ApiResponse of Object(void)</returns>
208-
public ApiResponse<Object> DownloadReportWithHttpInfo (DateTime? reportDate, string reportName, string organizationId = null)
214+
public ApiResponse<Object> DownloadReportWithHttpInfo (DateTime? reportDate, string reportName, string organizationId = null, string reportTime = null)
209215
{
210216
// verify the required parameter 'reportDate' is set
211217
if (reportDate == null)
@@ -240,6 +246,7 @@ public ApiResponse<Object> DownloadReportWithHttpInfo (DateTime? reportDate, str
240246
if (organizationId != null) localVarQueryParams.Add("organizationId", Configuration.ApiClient.ParameterToString(organizationId)); // query parameter
241247
if (reportDate != null) localVarQueryParams.Add("reportDate", Configuration.ApiClient.ParameterToString(reportDate)); // query parameter
242248
if (reportName != null) localVarQueryParams.Add("reportName", Configuration.ApiClient.ParameterToString(reportName)); // query parameter
249+
if (reportTime != null) localVarQueryParams.Add("reportTime", Configuration.ApiClient.ParameterToString(reportTime)); // query parameter
243250

244251

245252
// make the HTTP request
@@ -267,10 +274,11 @@ public ApiResponse<Object> DownloadReportWithHttpInfo (DateTime? reportDate, str
267274
/// <param name="reportDate">Valid date on which to download the report 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 </param>
268275
/// <param name="reportName">Name of the report to download</param>
269276
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
277+
/// <param name="reportTime">Valid time on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Time Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example time format:** - hh:mm:ss±hh:mm (optional)</param>
270278
/// <returns>Task of void</returns>
271-
public async System.Threading.Tasks.Task DownloadReportAsync (DateTime? reportDate, string reportName, string organizationId = null)
279+
public async System.Threading.Tasks.Task DownloadReportAsync (DateTime? reportDate, string reportName, string organizationId = null, string reportTime = null)
272280
{
273-
await DownloadReportAsyncWithHttpInfo(reportDate, reportName, organizationId);
281+
await DownloadReportAsyncWithHttpInfo(reportDate, reportName, organizationId, reportTime);
274282

275283
}
276284

@@ -281,8 +289,9 @@ public async System.Threading.Tasks.Task DownloadReportAsync (DateTime? reportDa
281289
/// <param name="reportDate">Valid date on which to download the report 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 </param>
282290
/// <param name="reportName">Name of the report to download</param>
283291
/// <param name="organizationId">Valid Cybersource Organization Id (optional)</param>
292+
/// <param name="reportTime">Valid time on which to download the report in **ISO 8601 format** Please refer the following link to know more about ISO 8601 format.[Rfc Date Time Format](https://xml2rfc.tools.ietf.org/public/rfc/html/rfc3339.html#anchor14) **Example time format:** - hh:mm:ss±hh:mm (optional)</param>
284293
/// <returns>Task of ApiResponse</returns>
285-
public async System.Threading.Tasks.Task<ApiResponse<Object>> DownloadReportAsyncWithHttpInfo (DateTime? reportDate, string reportName, string organizationId = null)
294+
public async System.Threading.Tasks.Task<ApiResponse<Object>> DownloadReportAsyncWithHttpInfo (DateTime? reportDate, string reportName, string organizationId = null, string reportTime = null)
286295
{
287296
// verify the required parameter 'reportDate' is set
288297
if (reportDate == null)
@@ -317,6 +326,7 @@ public async System.Threading.Tasks.Task<ApiResponse<Object>> DownloadReportAsyn
317326
if (organizationId != null) localVarQueryParams.Add("organizationId", Configuration.ApiClient.ParameterToString(organizationId)); // query parameter
318327
if (reportDate != null) localVarQueryParams.Add("reportDate", Configuration.ApiClient.ParameterToString(reportDate)); // query parameter
319328
if (reportName != null) localVarQueryParams.Add("reportName", Configuration.ApiClient.ParameterToString(reportName)); // query parameter
329+
if (reportTime != null) localVarQueryParams.Add("reportTime", Configuration.ApiClient.ParameterToString(reportTime)); // query parameter
320330

321331

322332
// make the HTTP request

0 commit comments

Comments
 (0)