forked from Adyen/adyen-dotnet-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ManageSCADevicesService.cs
171 lines (151 loc) · 11.9 KB
/
ManageSCADevicesService.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
/*
* Configuration API
*
*
* The version of the OpenAPI document: 2
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using Adyen.Model;
using Adyen.Model.BalancePlatform;
namespace Adyen.Service.BalancePlatform
{
/// <summary>
/// ManageSCADevicesService Interface
/// </summary>
public interface IManageSCADevicesService
{
/// <summary>
/// Complete the registration of an SCA device
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the SCA device. You obtain this `id` in the response of a POST&nbsp;[/registeredDevices](https://docs.adyen.com/api-explorer/balanceplatform/2/post/registeredDevices#responses-200-id) request.</param>
/// <param name="registerSCARequest"><see cref="RegisterSCARequest"/> - </param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="RegisterSCAFinalResponse"/>.</returns>
Model.BalancePlatform.RegisterSCAFinalResponse CompleteRegistrationOfScaDevice(string id, RegisterSCARequest registerSCARequest = default, RequestOptions requestOptions = default);
/// <summary>
/// Complete the registration of an SCA device
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the SCA device. You obtain this `id` in the response of a POST&nbsp;[/registeredDevices](https://docs.adyen.com/api-explorer/balanceplatform/2/post/registeredDevices#responses-200-id) request.</param>
/// <param name="registerSCARequest"><see cref="RegisterSCARequest"/> - </param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <param name="cancellationToken"> A CancellationToken enables cooperative cancellation between threads, thread pool work items, or Task objects.</param>
/// <returns>Task of <see cref="RegisterSCAFinalResponse"/>.</returns>
Task<Model.BalancePlatform.RegisterSCAFinalResponse> CompleteRegistrationOfScaDeviceAsync(string id, RegisterSCARequest registerSCARequest = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
/// <summary>
/// Delete a registration of an SCA device
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the SCA device.</param>
/// <param name="paymentInstrumentId"><see cref="string"/> - The unique identifier of the payment instrument linked to the SCA device.</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
void DeleteRegistrationOfScaDevice(string id, string paymentInstrumentId, RequestOptions requestOptions = default);
/// <summary>
/// Delete a registration of an SCA device
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the SCA device.</param>
/// <param name="paymentInstrumentId"><see cref="string"/> - The unique identifier of the payment instrument linked to the SCA device.</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <param name="cancellationToken"> A CancellationToken enables cooperative cancellation between threads, thread pool work items, or Task objects.</param>
Task DeleteRegistrationOfScaDeviceAsync(string id, string paymentInstrumentId, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
/// <summary>
/// Initiate the registration of an SCA device
/// </summary>
/// <param name="registerSCARequest"><see cref="RegisterSCARequest"/> - </param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="RegisterSCAResponse"/>.</returns>
Model.BalancePlatform.RegisterSCAResponse InitiateRegistrationOfScaDevice(RegisterSCARequest registerSCARequest = default, RequestOptions requestOptions = default);
/// <summary>
/// Initiate the registration of an SCA device
/// </summary>
/// <param name="registerSCARequest"><see cref="RegisterSCARequest"/> - </param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <param name="cancellationToken"> A CancellationToken enables cooperative cancellation between threads, thread pool work items, or Task objects.</param>
/// <returns>Task of <see cref="RegisterSCAResponse"/>.</returns>
Task<Model.BalancePlatform.RegisterSCAResponse> InitiateRegistrationOfScaDeviceAsync(RegisterSCARequest registerSCARequest = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
/// <summary>
/// Get a list of registered SCA devices
/// </summary>
/// <param name="paymentInstrumentId"><see cref="string"/> - The unique identifier of a payment instrument. It limits the returned list to SCA devices associated to this payment instrument.</param>
/// <param name="pageNumber"><see cref="int?"/> - The index of the page to retrieve. The index of the first page is 0 (zero). Default: 0.</param>
/// <param name="pageSize"><see cref="int?"/> - The number of items to have on a page. Default: 20. Maximum: 100.</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="SearchRegisteredDevicesResponse"/>.</returns>
Model.BalancePlatform.SearchRegisteredDevicesResponse ListRegisteredScaDevices(string paymentInstrumentId, int? pageNumber = default, int? pageSize = default, RequestOptions requestOptions = default);
/// <summary>
/// Get a list of registered SCA devices
/// </summary>
/// <param name="paymentInstrumentId"><see cref="string"/> - The unique identifier of a payment instrument. It limits the returned list to SCA devices associated to this payment instrument.</param>
/// <param name="pageNumber"><see cref="int?"/> - The index of the page to retrieve. The index of the first page is 0 (zero). Default: 0.</param>
/// <param name="pageSize"><see cref="int?"/> - The number of items to have on a page. Default: 20. Maximum: 100.</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <param name="cancellationToken"> A CancellationToken enables cooperative cancellation between threads, thread pool work items, or Task objects.</param>
/// <returns>Task of <see cref="SearchRegisteredDevicesResponse"/>.</returns>
Task<Model.BalancePlatform.SearchRegisteredDevicesResponse> ListRegisteredScaDevicesAsync(string paymentInstrumentId, int? pageNumber = default, int? pageSize = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
}
/// <summary>
/// Represents a collection of functions to interact with the ManageSCADevicesService API endpoints
/// </summary>
public class ManageSCADevicesService : AbstractService, IManageSCADevicesService
{
private readonly string _baseUrl;
public ManageSCADevicesService(Client client) : base(client)
{
_baseUrl = CreateBaseUrl("https://balanceplatform-api-test.adyen.com/bcl/v2");
}
public Model.BalancePlatform.RegisterSCAFinalResponse CompleteRegistrationOfScaDevice(string id, RegisterSCARequest registerSCARequest = default, RequestOptions requestOptions = default)
{
return CompleteRegistrationOfScaDeviceAsync(id, registerSCARequest, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.BalancePlatform.RegisterSCAFinalResponse> CompleteRegistrationOfScaDeviceAsync(string id, RegisterSCARequest registerSCARequest = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
var endpoint = _baseUrl + $"/registeredDevices/{id}";
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.BalancePlatform.RegisterSCAFinalResponse>(registerSCARequest.ToJson(), requestOptions, new HttpMethod("PATCH"), cancellationToken).ConfigureAwait(false);
}
public void DeleteRegistrationOfScaDevice(string id, string paymentInstrumentId, RequestOptions requestOptions = default)
{
DeleteRegistrationOfScaDeviceAsync(id, paymentInstrumentId, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task DeleteRegistrationOfScaDeviceAsync(string id, string paymentInstrumentId, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
// Build the query string
var queryParams = new Dictionary<string, string>();
queryParams.Add("paymentInstrumentId", paymentInstrumentId);
var endpoint = _baseUrl + $"/registeredDevices/{id}" + ToQueryString(queryParams);
var resource = new ServiceResource(this, endpoint);
await resource.RequestAsync(null, requestOptions, new HttpMethod("DELETE"), cancellationToken).ConfigureAwait(false);
}
public Model.BalancePlatform.RegisterSCAResponse InitiateRegistrationOfScaDevice(RegisterSCARequest registerSCARequest = default, RequestOptions requestOptions = default)
{
return InitiateRegistrationOfScaDeviceAsync(registerSCARequest, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.BalancePlatform.RegisterSCAResponse> InitiateRegistrationOfScaDeviceAsync(RegisterSCARequest registerSCARequest = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
var endpoint = _baseUrl + "/registeredDevices";
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.BalancePlatform.RegisterSCAResponse>(registerSCARequest.ToJson(), requestOptions, new HttpMethod("POST"), cancellationToken).ConfigureAwait(false);
}
public Model.BalancePlatform.SearchRegisteredDevicesResponse ListRegisteredScaDevices(string paymentInstrumentId, int? pageNumber = default, int? pageSize = default, RequestOptions requestOptions = default)
{
return ListRegisteredScaDevicesAsync(paymentInstrumentId, pageNumber, pageSize, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.BalancePlatform.SearchRegisteredDevicesResponse> ListRegisteredScaDevicesAsync(string paymentInstrumentId, int? pageNumber = default, int? pageSize = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
// Build the query string
var queryParams = new Dictionary<string, string>();
queryParams.Add("paymentInstrumentId", paymentInstrumentId);
if (pageNumber != null) queryParams.Add("pageNumber", pageNumber.ToString());
if (pageSize != null) queryParams.Add("pageSize", pageSize.ToString());
var endpoint = _baseUrl + "/registeredDevices" + ToQueryString(queryParams);
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.BalancePlatform.SearchRegisteredDevicesResponse>(null, requestOptions, new HttpMethod("GET"), cancellationToken).ConfigureAwait(false);
}
}
}