1 | <?php |
||
31 | class InvoiceFormOfPayment extends FormOfPayment |
||
32 | { |
||
33 | const INDICATOR_COLLECTIVE_INVOICE = "C"; |
||
34 | |||
35 | /** |
||
36 | * self::INDICATOR_* |
||
37 | * |
||
38 | * @var string |
||
39 | */ |
||
40 | public $indicator; |
||
41 | |||
42 | /** |
||
43 | * @var string |
||
44 | */ |
||
45 | public $merchantCode; |
||
46 | |||
47 | /** |
||
48 | * @var string |
||
49 | */ |
||
50 | public $expiryDate; |
||
51 | |||
52 | /** |
||
53 | * @var string |
||
54 | */ |
||
55 | public $customerAccount; |
||
56 | |||
57 | /** |
||
58 | * @var string |
||
59 | */ |
||
60 | public $membershipStatus; |
||
61 | |||
62 | /** |
||
63 | * @var string |
||
64 | */ |
||
65 | public $transactionInfo; |
||
66 | |||
67 | /** |
||
68 | * @var string |
||
69 | */ |
||
70 | public $pinCode; |
||
71 | |||
72 | /** |
||
73 | * @var string |
||
74 | */ |
||
75 | public $pinCodeType; |
||
76 | |||
77 | /** |
||
78 | * InvoiceFormOfPayment constructor. |
||
79 | * |
||
80 | * @param string $type |
||
81 | * @param string $customerAccount |
||
82 | * @param string $membershipStatus |
||
83 | * @param string|null $merchantCode |
||
84 | */ |
||
85 | 1 | public function __construct($type, $customerAccount, $membershipStatus, $merchantCode = null) |
|
92 | } |
||
93 |