-
Notifications
You must be signed in to change notification settings - Fork 103
/
CapitalApi.php
84 lines (77 loc) · 2.78 KB
/
CapitalApi.php
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
<?php
/**
* Capital API
*
* The version of the OpenAPI document: 3
* Generated by: https://openapi-generator.tech
* OpenAPI Generator version: 6.4.0
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
namespace Adyen\Service;
use Adyen\AdyenException;
use Adyen\Client;
use Adyen\Service;
use Adyen\Model\Capital\ObjectSerializer;
class CapitalApi extends Service
{
/**
* @var array|string|string[]
*/
private $baseURL;
/**
* AdyenService constructor.
*
* @param \Adyen\Client $client
* @throws AdyenException
*/
public function __construct(Client $client)
{
parent::__construct($client);
// Create the baseUrl based on live/test and optional live-url-prefix
$this->baseURL = $this->createBaseUrl("https://balanceplatform-api-test.adyen.com/btl/v3");
}
/**
* Get a capital account
*
* @param array|null $requestOptions ['queryParams' => ['counterpartyAccountHolderId'=> string]]
* @return \Adyen\Model\Capital\CapitalGrants
* @throws AdyenException
*/
public function getCapitalAccount(array $requestOptions = null): \Adyen\Model\Capital\CapitalGrants
{
$endpoint = $this->baseURL . "/grants";
$response = $this->requestHttp($endpoint, strtolower('GET'), null, $requestOptions);
return ObjectSerializer::deserialize($response, \Adyen\Model\Capital\CapitalGrants::class);
}
/**
* Get grant reference details
*
* @param string $id
* @param array|null $requestOptions
* @return \Adyen\Model\Capital\CapitalGrant
* @throws AdyenException
*/
public function getGrantReferenceDetails(string $id, array $requestOptions = null): \Adyen\Model\Capital\CapitalGrant
{
$endpoint = $this->baseURL . str_replace(['{id}'], [$id], "/grants/{id}");
$response = $this->requestHttp($endpoint, strtolower('GET'), null, $requestOptions);
return ObjectSerializer::deserialize($response, \Adyen\Model\Capital\CapitalGrant::class);
}
/**
* Request a grant payout
*
* @param \Adyen\Model\Capital\CapitalGrantInfo $capitalGrantInfo
* @param array|null $requestOptions
* @return \Adyen\Model\Capital\CapitalGrant
* @throws AdyenException
*/
public function requestGrantPayout(\Adyen\Model\Capital\CapitalGrantInfo $capitalGrantInfo, array $requestOptions = null): \Adyen\Model\Capital\CapitalGrant
{
$endpoint = $this->baseURL . "/grants";
$response = $this->requestHttp($endpoint, strtolower('POST'), (array) $capitalGrantInfo->jsonSerialize(), $requestOptions);
return ObjectSerializer::deserialize($response, \Adyen\Model\Capital\CapitalGrant::class);
}
}