1 | <?php |
||
9 | class RateInformation implements NodeInterface |
||
10 | { |
||
11 | /** @var bool */ |
||
12 | private $negotiatedRatesIndicator; |
||
13 | |||
14 | /** @var bool */ |
||
15 | private $rateChartIndicator; |
||
16 | |||
17 | /** |
||
18 | * @param null|object $attributes |
||
19 | */ |
||
20 | 1 | public function __construct($attributes = null) |
|
34 | |||
35 | /** |
||
36 | * @param null|DOMDocument $document |
||
37 | * |
||
38 | * @return DOMElement |
||
39 | */ |
||
40 | 1 | public function toNode(DOMDocument $document = null) |
|
58 | |||
59 | /** |
||
60 | * @return bool |
||
61 | */ |
||
62 | 1 | public function getNegotiatedRatesIndicator() |
|
66 | |||
67 | /** |
||
68 | * @param $value |
||
69 | * |
||
70 | * @return $this |
||
71 | */ |
||
72 | 1 | public function setNegotiatedRatesIndicator($value) |
|
78 | |||
79 | /** |
||
80 | * @return bool |
||
81 | */ |
||
82 | 1 | public function getRateChartIndicator() |
|
86 | |||
87 | /** |
||
88 | * @param $value |
||
89 | * |
||
90 | * @return $this |
||
91 | */ |
||
92 | 1 | public function setRateChartIndicator($value) |
|
98 | } |
||
99 |