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