forked from Adyen/adyen-dotnet-api-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PCIComplianceQuestionnairePageService.cs
70 lines (62 loc) · 3.35 KB
/
PCIComplianceQuestionnairePageService.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
/*
* Hosted onboarding API
*
*
* The version of the OpenAPI document: 6
*
* 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.PlatformsHostedOnboardingPage;
namespace Adyen.Service.PlatformsHostedOnboardingPage
{
/// <summary>
/// PCIComplianceQuestionnairePageService Interface
/// </summary>
public interface IPCIComplianceQuestionnairePageService
{
/// <summary>
/// Get a link to a PCI compliance questionnaire
/// </summary>
/// <param name="getPciUrlRequest"><see cref="GetPciUrlRequest"/> - </param>
/// <param name="requestOptions"><see cref="RequestOptions"/> - Additional request options.</param>
/// <returns><see cref="GetPciUrlResponse"/>.</returns>
Model.PlatformsHostedOnboardingPage.GetPciUrlResponse GetPciQuestionnaireUrl(GetPciUrlRequest getPciUrlRequest = default, RequestOptions requestOptions = default);
/// <summary>
/// Get a link to a PCI compliance questionnaire
/// </summary>
/// <param name="getPciUrlRequest"><see cref="GetPciUrlRequest"/> - </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="GetPciUrlResponse"/>.</returns>
Task<Model.PlatformsHostedOnboardingPage.GetPciUrlResponse> GetPciQuestionnaireUrlAsync(GetPciUrlRequest getPciUrlRequest = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default);
}
/// <summary>
/// Represents a collection of functions to interact with the PCIComplianceQuestionnairePageService API endpoints
/// </summary>
public class PCIComplianceQuestionnairePageService : AbstractService, IPCIComplianceQuestionnairePageService
{
private readonly string _baseUrl;
public PCIComplianceQuestionnairePageService(Client client) : base(client)
{
_baseUrl = CreateBaseUrl("https://cal-test.adyen.com/cal/services/Hop/v6");
}
public Model.PlatformsHostedOnboardingPage.GetPciUrlResponse GetPciQuestionnaireUrl(GetPciUrlRequest getPciUrlRequest = default, RequestOptions requestOptions = default)
{
return GetPciQuestionnaireUrlAsync(getPciUrlRequest, requestOptions).ConfigureAwait(false).GetAwaiter().GetResult();
}
public async Task<Model.PlatformsHostedOnboardingPage.GetPciUrlResponse> GetPciQuestionnaireUrlAsync(GetPciUrlRequest getPciUrlRequest = default, RequestOptions requestOptions = default, CancellationToken cancellationToken = default)
{
var endpoint = _baseUrl + "/getPciQuestionnaireUrl";
var resource = new ServiceResource(this, endpoint);
return await resource.RequestAsync<Model.PlatformsHostedOnboardingPage.GetPciUrlResponse>(getPciUrlRequest.ToJson(), requestOptions, new HttpMethod("POST"), cancellationToken).ConfigureAwait(false);
}
}
}