forked from Adyen/adyen-dotnet-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RecurringService.cs
111 lines (99 loc) · 7.34 KB
/
RecurringService.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
/*
* Adyen Checkout API
*
*
* The version of the OpenAPI document: 71
*
* 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.Checkout;
namespace Adyen.Service.Checkout
{
/// <summary>
/// RecurringService Interface
/// </summary>
public interface IRecurringService
{
/// <summary>
/// Delete a token for stored payment details
/// </summary>
/// <param name="storedPaymentMethodId"><see cref="string"/> - The unique identifier of the token.</param>
/// <param name="shopperReference"><see cref="string"/> - Your reference to uniquely identify this shopper, for example user ID or account ID. Minimum length: 3 characters. > Your reference must not include personally identifiable information (PII), for example name or email address.</param>
/// <param name="merchantAccount"><see cref="string"/> - Your merchant account.</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
void DeleteTokenForStoredPaymentDetails(string storedPaymentMethodId, string shopperReference, string merchantAccount, RequestOptions requestOptions = default);
/// <summary>
/// Delete a token for stored payment details
/// </summary>
/// <param name="storedPaymentMethodId"><see cref="string"/> - The unique identifier of the token.</param>
/// <param name="shopperReference"><see cref="string"/> - Your reference to uniquely identify this shopper, for example user ID or account ID. Minimum length: 3 characters. > Your reference must not include personally identifiable information (PII), for example name or email address.</param>
/// <param name="merchantAccount"><see cref="string"/> - Your merchant account.</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 DeleteTokenForStoredPaymentDetailsAsync(string storedPaymentMethodId, string shopperReference, string merchantAccount, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
/// <summary>
/// Get tokens for stored payment details
/// </summary>
/// <param name="shopperReference"><see cref="string"/> - Your reference to uniquely identify this shopper, for example user ID or account ID. Minimum length: 3 characters. > Your reference must not include personally identifiable information (PII), for example name or email address.</param>
/// <param name="merchantAccount"><see cref="string"/> - Your merchant account.</param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="ListStoredPaymentMethodsResponse"/>.</returns>
Model.Checkout.ListStoredPaymentMethodsResponse GetTokensForStoredPaymentDetails(string shopperReference = default, string merchantAccount = default, RequestOptions requestOptions = default);
/// <summary>
/// Get tokens for stored payment details
/// </summary>
/// <param name="shopperReference"><see cref="string"/> - Your reference to uniquely identify this shopper, for example user ID or account ID. Minimum length: 3 characters. > Your reference must not include personally identifiable information (PII), for example name or email address.</param>
/// <param name="merchantAccount"><see cref="string"/> - Your merchant account.</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="ListStoredPaymentMethodsResponse"/>.</returns>
Task<Model.Checkout.ListStoredPaymentMethodsResponse> GetTokensForStoredPaymentDetailsAsync(string shopperReference = default, string merchantAccount = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
}
/// <summary>
/// Represents a collection of functions to interact with the RecurringService API endpoints
/// </summary>
public class RecurringService : AbstractService, IRecurringService
{
private readonly string _baseUrl;
public RecurringService(Client client) : base(client)
{
_baseUrl = CreateBaseUrl("https://checkout-test.adyen.com/v71");
}
public void DeleteTokenForStoredPaymentDetails(string storedPaymentMethodId, string shopperReference, string merchantAccount, RequestOptions requestOptions = default)
{
DeleteTokenForStoredPaymentDetailsAsync(storedPaymentMethodId, shopperReference, merchantAccount, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task DeleteTokenForStoredPaymentDetailsAsync(string storedPaymentMethodId, string shopperReference, string merchantAccount, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
// Build the query string
var queryParams = new Dictionary<string, string>();
queryParams.Add("shopperReference", shopperReference);
queryParams.Add("merchantAccount", merchantAccount);
var endpoint = _baseUrl + $"/storedPaymentMethods/{storedPaymentMethodId}" + ToQueryString(queryParams);
var resource = new ServiceResource(this, endpoint);
await resource.RequestAsync(null, requestOptions, new HttpMethod("DELETE"), cancellationToken).ConfigureAwait(false);
}
public Model.Checkout.ListStoredPaymentMethodsResponse GetTokensForStoredPaymentDetails(string shopperReference = default, string merchantAccount = default, RequestOptions requestOptions = default)
{
return GetTokensForStoredPaymentDetailsAsync(shopperReference, merchantAccount, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.Checkout.ListStoredPaymentMethodsResponse> GetTokensForStoredPaymentDetailsAsync(string shopperReference = default, string merchantAccount = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
// Build the query string
var queryParams = new Dictionary<string, string>();
if (shopperReference != null) queryParams.Add("shopperReference", shopperReference);
if (merchantAccount != null) queryParams.Add("merchantAccount", merchantAccount);
var endpoint = _baseUrl + "/storedPaymentMethods" + ToQueryString(queryParams);
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.Checkout.ListStoredPaymentMethodsResponse>(null, requestOptions, new HttpMethod("GET"), cancellationToken).ConfigureAwait(false);
}
}
}