1 | <?php |
||
18 | class BillPayment extends \stdClass implements Arrayable |
||
19 | { |
||
20 | public $amount; |
||
21 | public $bankBranch; |
||
22 | public $bankAccount; |
||
23 | public $description; |
||
24 | public $id; |
||
25 | |||
26 | /** |
||
27 | * This validate and return an array |
||
28 | * @return array |
||
29 | */ |
||
30 | public function toArray(): array |
||
35 | |||
36 | /** |
||
37 | * This function validate a bill payment |
||
38 | */ |
||
39 | public function validate() |
||
44 | } |
||
45 |