@@ 5-188 (lines=184) @@ | ||
2 | ||
3 | namespace Gueststream\PMS\IQWare\API; |
|
4 | ||
5 | class cStayValue |
|
6 | { |
|
7 | ||
8 | /** |
|
9 | * @var float $FirstNight |
|
10 | */ |
|
11 | protected $FirstNight = null; |
|
12 | ||
13 | /** |
|
14 | * @var float $FirstNightNoTaxes |
|
15 | */ |
|
16 | protected $FirstNightNoTaxes = null; |
|
17 | ||
18 | /** |
|
19 | * @var float $TotalStay |
|
20 | */ |
|
21 | protected $TotalStay = null; |
|
22 | ||
23 | /** |
|
24 | * @var float $TotalStayNoTaxes |
|
25 | */ |
|
26 | protected $TotalStayNoTaxes = null; |
|
27 | ||
28 | /** |
|
29 | * @var float $AvgNight |
|
30 | */ |
|
31 | protected $AvgNight = null; |
|
32 | ||
33 | /** |
|
34 | * @var float $RequiredDeposit |
|
35 | */ |
|
36 | protected $RequiredDeposit = null; |
|
37 | ||
38 | /** |
|
39 | * @var int $ID_Currency |
|
40 | */ |
|
41 | protected $ID_Currency = null; |
|
42 | ||
43 | /** |
|
44 | * @param float $FirstNight |
|
45 | * @param float $FirstNightNoTaxes |
|
46 | * @param float $TotalStay |
|
47 | * @param float $TotalStayNoTaxes |
|
48 | * @param float $AvgNight |
|
49 | * @param float $RequiredDeposit |
|
50 | * @param int $ID_Currency |
|
51 | */ |
|
52 | public function __construct($FirstNight, $FirstNightNoTaxes, $TotalStay, $TotalStayNoTaxes, $AvgNight, $RequiredDeposit, $ID_Currency) |
|
53 | { |
|
54 | $this->FirstNight = $FirstNight; |
|
55 | $this->FirstNightNoTaxes = $FirstNightNoTaxes; |
|
56 | $this->TotalStay = $TotalStay; |
|
57 | $this->TotalStayNoTaxes = $TotalStayNoTaxes; |
|
58 | $this->AvgNight = $AvgNight; |
|
59 | $this->RequiredDeposit = $RequiredDeposit; |
|
60 | $this->ID_Currency = $ID_Currency; |
|
61 | } |
|
62 | ||
63 | /** |
|
64 | * @return float |
|
65 | */ |
|
66 | public function getFirstNight() |
|
67 | { |
|
68 | return $this->FirstNight; |
|
69 | } |
|
70 | ||
71 | /** |
|
72 | * @param float $FirstNight |
|
73 | * @return \Gueststream\PMS\IQWare\API\cStayValue |
|
74 | */ |
|
75 | public function setFirstNight($FirstNight) |
|
76 | { |
|
77 | $this->FirstNight = $FirstNight; |
|
78 | return $this; |
|
79 | } |
|
80 | ||
81 | /** |
|
82 | * @return float |
|
83 | */ |
|
84 | public function getFirstNightNoTaxes() |
|
85 | { |
|
86 | return $this->FirstNightNoTaxes; |
|
87 | } |
|
88 | ||
89 | /** |
|
90 | * @param float $FirstNightNoTaxes |
|
91 | * @return \Gueststream\PMS\IQWare\API\cStayValue |
|
92 | */ |
|
93 | public function setFirstNightNoTaxes($FirstNightNoTaxes) |
|
94 | { |
|
95 | $this->FirstNightNoTaxes = $FirstNightNoTaxes; |
|
96 | return $this; |
|
97 | } |
|
98 | ||
99 | /** |
|
100 | * @return float |
|
101 | */ |
|
102 | public function getTotalStay() |
|
103 | { |
|
104 | return $this->TotalStay; |
|
105 | } |
|
106 | ||
107 | /** |
|
108 | * @param float $TotalStay |
|
109 | * @return \Gueststream\PMS\IQWare\API\cStayValue |
|
110 | */ |
|
111 | public function setTotalStay($TotalStay) |
|
112 | { |
|
113 | $this->TotalStay = $TotalStay; |
|
114 | return $this; |
|
115 | } |
|
116 | ||
117 | /** |
|
118 | * @return float |
|
119 | */ |
|
120 | public function getTotalStayNoTaxes() |
|
121 | { |
|
122 | return $this->TotalStayNoTaxes; |
|
123 | } |
|
124 | ||
125 | /** |
|
126 | * @param float $TotalStayNoTaxes |
|
127 | * @return \Gueststream\PMS\IQWare\API\cStayValue |
|
128 | */ |
|
129 | public function setTotalStayNoTaxes($TotalStayNoTaxes) |
|
130 | { |
|
131 | $this->TotalStayNoTaxes = $TotalStayNoTaxes; |
|
132 | return $this; |
|
133 | } |
|
134 | ||
135 | /** |
|
136 | * @return float |
|
137 | */ |
|
138 | public function getAvgNight() |
|
139 | { |
|
140 | return $this->AvgNight; |
|
141 | } |
|
142 | ||
143 | /** |
|
144 | * @param float $AvgNight |
|
145 | * @return \Gueststream\PMS\IQWare\API\cStayValue |
|
146 | */ |
|
147 | public function setAvgNight($AvgNight) |
|
148 | { |
|
149 | $this->AvgNight = $AvgNight; |
|
150 | return $this; |
|
151 | } |
|
152 | ||
153 | /** |
|
154 | * @return float |
|
155 | */ |
|
156 | public function getRequiredDeposit() |
|
157 | { |
|
158 | return $this->RequiredDeposit; |
|
159 | } |
|
160 | ||
161 | /** |
|
162 | * @param float $RequiredDeposit |
|
163 | * @return \Gueststream\PMS\IQWare\API\cStayValue |
|
164 | */ |
|
165 | public function setRequiredDeposit($RequiredDeposit) |
|
166 | { |
|
167 | $this->RequiredDeposit = $RequiredDeposit; |
|
168 | return $this; |
|
169 | } |
|
170 | ||
171 | /** |
|
172 | * @return int |
|
173 | */ |
|
174 | public function getID_Currency() |
|
175 | { |
|
176 | return $this->ID_Currency; |
|
177 | } |
|
178 | ||
179 | /** |
|
180 | * @param int $ID_Currency |
|
181 | * @return \Gueststream\PMS\IQWare\API\cStayValue |
|
182 | */ |
|
183 | public function setID_Currency($ID_Currency) |
|
184 | { |
|
185 | $this->ID_Currency = $ID_Currency; |
|
186 | return $this; |
|
187 | } |
|
188 | } |
|
189 |
@@ 5-186 (lines=182) @@ | ||
2 | ||
3 | namespace Gueststream\PMS\IQWare\API; |
|
4 | ||
5 | class OwnerReservationValue |
|
6 | { |
|
7 | ||
8 | /** |
|
9 | * @var float $FirstNightNoTx |
|
10 | */ |
|
11 | protected $FirstNightNoTx = null; |
|
12 | ||
13 | /** |
|
14 | * @var float $FirstNight |
|
15 | */ |
|
16 | protected $FirstNight = null; |
|
17 | ||
18 | /** |
|
19 | * @var float $TotalStay |
|
20 | */ |
|
21 | protected $TotalStay = null; |
|
22 | ||
23 | /** |
|
24 | * @var float $AvgNight |
|
25 | */ |
|
26 | protected $AvgNight = null; |
|
27 | ||
28 | /** |
|
29 | * @var float $RequiredDeposit |
|
30 | */ |
|
31 | protected $RequiredDeposit = null; |
|
32 | ||
33 | /** |
|
34 | * @var int $CurrencyId |
|
35 | */ |
|
36 | protected $CurrencyId = null; |
|
37 | ||
38 | /** |
|
39 | * @var StayBreakDown $StayBreakDown |
|
40 | */ |
|
41 | protected $StayBreakDown = null; |
|
42 | ||
43 | /** |
|
44 | * @param float $FirstNightNoTx |
|
45 | * @param float $FirstNight |
|
46 | * @param float $TotalStay |
|
47 | * @param float $AvgNight |
|
48 | * @param float $RequiredDeposit |
|
49 | * @param int $CurrencyId |
|
50 | */ |
|
51 | public function __construct($FirstNightNoTx, $FirstNight, $TotalStay, $AvgNight, $RequiredDeposit, $CurrencyId) |
|
52 | { |
|
53 | $this->FirstNightNoTx = $FirstNightNoTx; |
|
54 | $this->FirstNight = $FirstNight; |
|
55 | $this->TotalStay = $TotalStay; |
|
56 | $this->AvgNight = $AvgNight; |
|
57 | $this->RequiredDeposit = $RequiredDeposit; |
|
58 | $this->CurrencyId = $CurrencyId; |
|
59 | } |
|
60 | ||
61 | /** |
|
62 | * @return float |
|
63 | */ |
|
64 | public function getFirstNightNoTx() |
|
65 | { |
|
66 | return $this->FirstNightNoTx; |
|
67 | } |
|
68 | ||
69 | /** |
|
70 | * @param float $FirstNightNoTx |
|
71 | * @return \Gueststream\PMS\IQWare\API\OwnerReservationValue |
|
72 | */ |
|
73 | public function setFirstNightNoTx($FirstNightNoTx) |
|
74 | { |
|
75 | $this->FirstNightNoTx = $FirstNightNoTx; |
|
76 | return $this; |
|
77 | } |
|
78 | ||
79 | /** |
|
80 | * @return float |
|
81 | */ |
|
82 | public function getFirstNight() |
|
83 | { |
|
84 | return $this->FirstNight; |
|
85 | } |
|
86 | ||
87 | /** |
|
88 | * @param float $FirstNight |
|
89 | * @return \Gueststream\PMS\IQWare\API\OwnerReservationValue |
|
90 | */ |
|
91 | public function setFirstNight($FirstNight) |
|
92 | { |
|
93 | $this->FirstNight = $FirstNight; |
|
94 | return $this; |
|
95 | } |
|
96 | ||
97 | /** |
|
98 | * @return float |
|
99 | */ |
|
100 | public function getTotalStay() |
|
101 | { |
|
102 | return $this->TotalStay; |
|
103 | } |
|
104 | ||
105 | /** |
|
106 | * @param float $TotalStay |
|
107 | * @return \Gueststream\PMS\IQWare\API\OwnerReservationValue |
|
108 | */ |
|
109 | public function setTotalStay($TotalStay) |
|
110 | { |
|
111 | $this->TotalStay = $TotalStay; |
|
112 | return $this; |
|
113 | } |
|
114 | ||
115 | /** |
|
116 | * @return float |
|
117 | */ |
|
118 | public function getAvgNight() |
|
119 | { |
|
120 | return $this->AvgNight; |
|
121 | } |
|
122 | ||
123 | /** |
|
124 | * @param float $AvgNight |
|
125 | * @return \Gueststream\PMS\IQWare\API\OwnerReservationValue |
|
126 | */ |
|
127 | public function setAvgNight($AvgNight) |
|
128 | { |
|
129 | $this->AvgNight = $AvgNight; |
|
130 | return $this; |
|
131 | } |
|
132 | ||
133 | /** |
|
134 | * @return float |
|
135 | */ |
|
136 | public function getRequiredDeposit() |
|
137 | { |
|
138 | return $this->RequiredDeposit; |
|
139 | } |
|
140 | ||
141 | /** |
|
142 | * @param float $RequiredDeposit |
|
143 | * @return \Gueststream\PMS\IQWare\API\OwnerReservationValue |
|
144 | */ |
|
145 | public function setRequiredDeposit($RequiredDeposit) |
|
146 | { |
|
147 | $this->RequiredDeposit = $RequiredDeposit; |
|
148 | return $this; |
|
149 | } |
|
150 | ||
151 | /** |
|
152 | * @return int |
|
153 | */ |
|
154 | public function getCurrencyId() |
|
155 | { |
|
156 | return $this->CurrencyId; |
|
157 | } |
|
158 | ||
159 | /** |
|
160 | * @param int $CurrencyId |
|
161 | * @return \Gueststream\PMS\IQWare\API\OwnerReservationValue |
|
162 | */ |
|
163 | public function setCurrencyId($CurrencyId) |
|
164 | { |
|
165 | $this->CurrencyId = $CurrencyId; |
|
166 | return $this; |
|
167 | } |
|
168 | ||
169 | /** |
|
170 | * @return StayBreakDown |
|
171 | */ |
|
172 | public function getStayBreakDown() |
|
173 | { |
|
174 | return $this->StayBreakDown; |
|
175 | } |
|
176 | ||
177 | /** |
|
178 | * @param StayBreakDown $StayBreakDown |
|
179 | * @return \Gueststream\PMS\IQWare\API\OwnerReservationValue |
|
180 | */ |
|
181 | public function setStayBreakDown($StayBreakDown) |
|
182 | { |
|
183 | $this->StayBreakDown = $StayBreakDown; |
|
184 | return $this; |
|
185 | } |
|
186 | } |
|
187 |