| 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 | public $disableReason; |
||
| 34 | |||
| 35 | /** @var RedirectPurchaseResponse */ |
||
| 36 | public $form; |
||
| 37 | |||
| 38 | public function setForm(RedirectPurchaseResponse $response) |
||
| 42 | |||
| 43 | public function getFormInputs() |
||
| 51 | |||
| 52 | public function getFormAction() |
||
| 60 | |||
| 61 | public function getFormMethod() |
||
| 69 | } |
||
| 70 |