forked from Adyen/adyen-dotnet-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAccountHoldersService.cs
More file actions
204 lines (180 loc) · 13.4 KB
/
AccountHoldersService.cs
File metadata and controls
204 lines (180 loc) · 13.4 KB
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/*
* 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>
/// AccountHoldersService Interface
/// </summary>
public interface IAccountHoldersService
{
/// <summary>
/// Create an account holder
/// </summary>
/// <param name="accountHolderInfo"><see cref="AccountHolderInfo"/> - </param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="AccountHolder"/>.</returns>
Model.BalancePlatform.AccountHolder CreateAccountHolder(AccountHolderInfo accountHolderInfo = default, RequestOptions requestOptions = default);
/// <summary>
/// Create an account holder
/// </summary>
/// <param name="accountHolderInfo"><see cref="AccountHolderInfo"/> - </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="AccountHolder"/>.</returns>
Task<Model.BalancePlatform.AccountHolder> CreateAccountHolderAsync(AccountHolderInfo accountHolderInfo = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
/// <summary>
/// Get an account holder
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the account holder.</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="AccountHolder"/>.</returns>
Model.BalancePlatform.AccountHolder GetAccountHolder(string id, RequestOptions requestOptions = default);
/// <summary>
/// Get an account holder
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the account holder.</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="AccountHolder"/>.</returns>
Task<Model.BalancePlatform.AccountHolder> GetAccountHolderAsync(string id, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
/// <summary>
/// Get all balance accounts of an account holder
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the account holder.</param>
/// <param name="offset"><see cref="int?"/> - The number of items that you want to skip.</param>
/// <param name="limit"><see cref="int?"/> - The number of items returned per page, maximum 100 items. By default, the response returns 10 items per page.</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="PaginatedBalanceAccountsResponse"/>.</returns>
Model.BalancePlatform.PaginatedBalanceAccountsResponse GetAllBalanceAccountsOfAccountHolder(string id, int? offset = default, int? limit = default, RequestOptions requestOptions = default);
/// <summary>
/// Get all balance accounts of an account holder
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the account holder.</param>
/// <param name="offset"><see cref="int?"/> - The number of items that you want to skip.</param>
/// <param name="limit"><see cref="int?"/> - The number of items returned per page, maximum 100 items. By default, the response returns 10 items per page.</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="PaginatedBalanceAccountsResponse"/>.</returns>
Task<Model.BalancePlatform.PaginatedBalanceAccountsResponse> GetAllBalanceAccountsOfAccountHolderAsync(string id, int? offset = default, int? limit = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
/// <summary>
/// Get a tax form
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the account holder.</param>
/// <param name="formType"><see cref="string"/> - The type of tax form you want to retrieve. Accepted values are **US1099k** and **US1099nec**</param>
/// <param name="year"><see cref="int"/> - The tax year in YYYY format for the tax form you want to retrieve</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="GetTaxFormResponse"/>.</returns>
Model.BalancePlatform.GetTaxFormResponse GetTaxForm(string id, string formType, int year, RequestOptions requestOptions = default);
/// <summary>
/// Get a tax form
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the account holder.</param>
/// <param name="formType"><see cref="string"/> - The type of tax form you want to retrieve. Accepted values are **US1099k** and **US1099nec**</param>
/// <param name="year"><see cref="int"/> - The tax year in YYYY format for the tax form you want to retrieve</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="GetTaxFormResponse"/>.</returns>
Task<Model.BalancePlatform.GetTaxFormResponse> GetTaxFormAsync(string id, string formType, int year, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
/// <summary>
/// Update an account holder
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the account holder.</param>
/// <param name="accountHolderUpdateRequest"><see cref="AccountHolderUpdateRequest"/> - </param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="AccountHolder"/>.</returns>
Model.BalancePlatform.AccountHolder UpdateAccountHolder(string id, AccountHolderUpdateRequest accountHolderUpdateRequest = default, RequestOptions requestOptions = default);
/// <summary>
/// Update an account holder
/// </summary>
/// <param name="id"><see cref="string"/> - The unique identifier of the account holder.</param>
/// <param name="accountHolderUpdateRequest"><see cref="AccountHolderUpdateRequest"/> - </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="AccountHolder"/>.</returns>
Task<Model.BalancePlatform.AccountHolder> UpdateAccountHolderAsync(string id, AccountHolderUpdateRequest accountHolderUpdateRequest = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
}
/// <summary>
/// Represents a collection of functions to interact with the AccountHoldersService API endpoints
/// </summary>
public class AccountHoldersService : AbstractService, IAccountHoldersService
{
private readonly string _baseUrl;
public AccountHoldersService(Client client) : base(client)
{
_baseUrl = CreateBaseUrl("https://balanceplatform-api-test.adyen.com/bcl/v2");
}
public Model.BalancePlatform.AccountHolder CreateAccountHolder(AccountHolderInfo accountHolderInfo = default, RequestOptions requestOptions = default)
{
return CreateAccountHolderAsync(accountHolderInfo, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.BalancePlatform.AccountHolder> CreateAccountHolderAsync(AccountHolderInfo accountHolderInfo = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
var endpoint = _baseUrl + "/accountHolders";
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.BalancePlatform.AccountHolder>(accountHolderInfo.ToJson(), requestOptions, new HttpMethod("POST"), cancellationToken).ConfigureAwait(false);
}
public Model.BalancePlatform.AccountHolder GetAccountHolder(string id, RequestOptions requestOptions = default)
{
return GetAccountHolderAsync(id, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.BalancePlatform.AccountHolder> GetAccountHolderAsync(string id, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
var endpoint = _baseUrl + $"/accountHolders/{id}";
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.BalancePlatform.AccountHolder>(null, requestOptions, new HttpMethod("GET"), cancellationToken).ConfigureAwait(false);
}
public Model.BalancePlatform.PaginatedBalanceAccountsResponse GetAllBalanceAccountsOfAccountHolder(string id, int? offset = default, int? limit = default, RequestOptions requestOptions = default)
{
return GetAllBalanceAccountsOfAccountHolderAsync(id, offset, limit, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.BalancePlatform.PaginatedBalanceAccountsResponse> GetAllBalanceAccountsOfAccountHolderAsync(string id, int? offset = default, int? limit = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
// Build the query string
var queryParams = new Dictionary<string, string>();
if (offset != null) queryParams.Add("offset", offset.ToString());
if (limit != null) queryParams.Add("limit", limit.ToString());
var endpoint = _baseUrl + $"/accountHolders/{id}/balanceAccounts" + ToQueryString(queryParams);
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.BalancePlatform.PaginatedBalanceAccountsResponse>(null, requestOptions, new HttpMethod("GET"), cancellationToken).ConfigureAwait(false);
}
public Model.BalancePlatform.GetTaxFormResponse GetTaxForm(string id, string formType, int year, RequestOptions requestOptions = default)
{
return GetTaxFormAsync(id, formType, year, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.BalancePlatform.GetTaxFormResponse> GetTaxFormAsync(string id, string formType, int year, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
// Build the query string
var queryParams = new Dictionary<string, string>();
queryParams.Add("formType", formType);
queryParams.Add("year", year.ToString());
var endpoint = _baseUrl + $"/accountHolders/{id}/taxForms" + ToQueryString(queryParams);
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.BalancePlatform.GetTaxFormResponse>(null, requestOptions, new HttpMethod("GET"), cancellationToken).ConfigureAwait(false);
}
public Model.BalancePlatform.AccountHolder UpdateAccountHolder(string id, AccountHolderUpdateRequest accountHolderUpdateRequest = default, RequestOptions requestOptions = default)
{
return UpdateAccountHolderAsync(id, accountHolderUpdateRequest, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.BalancePlatform.AccountHolder> UpdateAccountHolderAsync(string id, AccountHolderUpdateRequest accountHolderUpdateRequest = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
var endpoint = _baseUrl + $"/accountHolders/{id}";
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.BalancePlatform.AccountHolder>(accountHolderUpdateRequest.ToJson(), requestOptions, new HttpMethod("PATCH"), cancellationToken).ConfigureAwait(false);
}
}
}