1 | <?php |
||
8 | class BillReceiver |
||
9 | { |
||
10 | /** |
||
11 | * @var string |
||
12 | */ |
||
13 | private $postalCode; |
||
14 | |||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $accountNumber; |
||
19 | |||
20 | /** |
||
21 | * @param \stdClass|null $attributes |
||
22 | */ |
||
23 | public function __construct(\stdClass $attributes = null) |
||
28 | |||
29 | /** |
||
30 | * @return string |
||
31 | */ |
||
32 | public function getPostalCode() |
||
36 | |||
37 | /** |
||
38 | * @param string $postalCode |
||
39 | * @return BillReceiver |
||
40 | */ |
||
41 | public function setPostalCode($postalCode) |
||
47 | |||
48 | /** |
||
49 | * @return string |
||
50 | */ |
||
51 | public function getAccountNumber() |
||
55 | |||
56 | /** |
||
57 | * @param string $accountNumber |
||
58 | * @return BillThirdParty |
||
59 | */ |
||
60 | public function setAccountNumber($accountNumber) |
||
66 | } |
||
67 |