1 | <?php |
||
31 | class InvoiceInformation |
||
32 | { |
||
33 | /** |
||
34 | * @var InvoiceFormOfPayment |
||
35 | */ |
||
36 | public $formOfPayment; |
||
37 | |||
38 | /** |
||
39 | * @var InvoiceFormOfPayment[] |
||
40 | */ |
||
41 | public $otherFormOfPayment = []; |
||
42 | |||
43 | /** |
||
44 | * InvoiceInformation constructor. |
||
45 | * |
||
46 | * @param string $type |
||
47 | * @param string $customerAccount |
||
48 | * @param string $membershipStatus |
||
49 | * @param string|null $merchantCode |
||
50 | */ |
||
51 | 1 | public function __construct($type, $customerAccount, $membershipStatus, $merchantCode = null) |
|
60 | } |
||
61 |