| 1 | <?php |
||
| 33 | class FormOfPaymentInformation |
||
| 34 | { |
||
| 35 | /** |
||
| 36 | * @var FormOfPayment |
||
| 37 | */ |
||
| 38 | public $formOfPayment; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @var FormOfPayment[] |
||
| 42 | */ |
||
| 43 | public $otherFormOfPayment = []; |
||
| 44 | |||
| 45 | /** |
||
| 46 | * FormOfPaymentInformation constructor. |
||
| 47 | * |
||
| 48 | * @param FormOfPaymentOptions[] $fop |
||
| 49 | */ |
||
| 50 | public function __construct(array $fop) |
||
| 60 | } |
||
| 61 |