1 | <?php declare(strict_types = 1); |
||
10 | class RefundPaymentRequest |
||
11 | { |
||
12 | |||
13 | /** @var string */ |
||
14 | private $merchantId; |
||
15 | |||
16 | /** @var string */ |
||
17 | private $payId; |
||
18 | |||
19 | /** @var int|null */ |
||
20 | private $amount; |
||
21 | |||
22 | 1 | public function __construct( |
|
34 | |||
35 | 1 | public function send(ApiClient $apiClient): PaymentResponse |
|
74 | |||
75 | } |
||
76 |