1 | <?php |
||
15 | class BanklyCard |
||
16 | { |
||
17 | use Rest; |
||
18 | |||
19 | /** |
||
20 | * @param string $clientSecret |
||
21 | * @param string $clientId |
||
22 | */ |
||
23 | public function __construct($clientSecret = null, $clientId = null) |
||
29 | |||
30 | /** |
||
31 | * @param string $proxy |
||
32 | * @param string $page |
||
33 | * @param integer $pageSize |
||
34 | * @param string $startDate |
||
35 | * @param string $endDate |
||
36 | * @return array |
||
37 | */ |
||
38 | public function transactions(string $proxy, string $page, int $pageSize, string $startDate, string $endDate) |
||
49 | |||
50 | /** |
||
51 | * @param string $proxy |
||
52 | * @param Duplicate $duplicate |
||
53 | * @return array |
||
54 | */ |
||
55 | public function duplicate(string $proxy, Duplicate $duplicate) |
||
59 | |||
60 | /** |
||
61 | * @param string $proxy |
||
62 | * @param Password $password |
||
63 | * @return array |
||
64 | */ |
||
65 | public function pciData(string $proxy, Password $password) |
||
69 | |||
70 | /** |
||
71 | * @param string $proxy |
||
72 | * @return array |
||
73 | */ |
||
74 | public function getByProxy(string $proxy) |
||
78 | } |
||
79 |