1 | <?php |
||
12 | class BillThirdParty implements NodeInterface |
||
13 | { |
||
14 | /** |
||
15 | * @var Address |
||
16 | */ |
||
17 | private $thirdPartyAddress; |
||
18 | |||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $accountNumber; |
||
23 | |||
24 | /** |
||
25 | * @param \stdClass|null $attributes |
||
26 | */ |
||
27 | 1 | public function __construct(\stdClass $attributes = null) |
|
32 | |||
33 | /** |
||
34 | * @return Address |
||
35 | */ |
||
36 | 1 | public function getThirdPartyAddress() |
|
40 | |||
41 | /** |
||
42 | * @param Address $thirdPartyAddress |
||
43 | * @return BillThirdParty |
||
44 | */ |
||
45 | public function setThirdPartyAddress(Address $thirdPartyAddress = null) |
||
51 | |||
52 | /** |
||
53 | * @return string |
||
54 | */ |
||
55 | 1 | public function getAccountNumber() |
|
59 | |||
60 | /** |
||
61 | * @param string $accountNumber |
||
62 | * @return BillThirdParty |
||
63 | */ |
||
64 | public function setAccountNumber($accountNumber) |
||
70 | |||
71 | /** |
||
72 | * @param DOMDocument|null $document |
||
73 | * @return DOMElement |
||
74 | */ |
||
75 | 1 | public function toNode(DOMDocument $document = null) |
|
98 | } |
||
99 |