1 | <?php |
||
21 | class PurchaseRequest |
||
22 | { |
||
23 | public $id; |
||
24 | |||
25 | public $merchant_name; |
||
26 | public $system; |
||
27 | public $label; |
||
28 | |||
29 | public $amount; |
||
30 | public $fee; |
||
31 | public $commission_fee; |
||
32 | public $currency; |
||
33 | |||
34 | /** @var RedirectPurchaseResponse */ |
||
35 | public $form; |
||
36 | |||
37 | public function setForm(RedirectPurchaseResponse $response) |
||
41 | |||
42 | public function getFormInputs() |
||
50 | |||
51 | public function getFormAction() |
||
59 | |||
60 | public function getFormMethod() |
||
68 | } |
||
69 |