1 | <?php |
||
22 | class PurchaseRequest |
||
23 | { |
||
24 | public $id; |
||
25 | |||
26 | public $merchant_name; |
||
27 | public $system; |
||
28 | public $label; |
||
29 | |||
30 | public $amount; |
||
31 | public $fee; |
||
32 | public $commission_fee; |
||
33 | |||
34 | public $vat_rate; |
||
35 | public $vat_sum; |
||
36 | |||
37 | public $currency; |
||
38 | public $disableReason; |
||
39 | |||
40 | public $paymentMethod; |
||
41 | |||
42 | /** @var RedirectPurchaseResponse */ |
||
43 | public $form; |
||
44 | |||
45 | public function setForm(RedirectPurchaseResponse $response) |
||
49 | |||
50 | public function getFormInputs() |
||
58 | |||
59 | public function getFormAction() |
||
67 | |||
68 | public function getFormMethod() |
||
76 | |||
77 | public function getPaymentMethod(): ?string |
||
93 | } |
||
94 |