Complex classes like WebResConfig often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use WebResConfig, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 5 | class WebResConfig |
||
| 6 | { |
||
| 7 | |||
| 8 | /** |
||
| 9 | * @var \DateTime $LoadTime |
||
| 10 | */ |
||
| 11 | protected $LoadTime = null; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var \DateTime $CurrentHotelDate |
||
| 15 | */ |
||
| 16 | protected $CurrentHotelDate = null; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var string $PropertyName |
||
| 20 | */ |
||
| 21 | protected $PropertyName = null; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var string $CurrencySymbol |
||
| 25 | */ |
||
| 26 | protected $CurrencySymbol = null; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var int $CurrencyId |
||
| 30 | */ |
||
| 31 | protected $CurrencyId = null; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var string $Address |
||
| 35 | */ |
||
| 36 | protected $Address = null; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var string $State |
||
| 40 | */ |
||
| 41 | protected $State = null; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @var string $Country |
||
| 45 | */ |
||
| 46 | protected $Country = null; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @var string $City |
||
| 50 | */ |
||
| 51 | protected $City = null; |
||
| 52 | |||
| 53 | /** |
||
| 54 | * @var string $Phone800 |
||
| 55 | */ |
||
| 56 | protected $Phone800 = null; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * @var string $Phone |
||
| 60 | */ |
||
| 61 | protected $Phone = null; |
||
| 62 | |||
| 63 | /** |
||
| 64 | * @var string $Email |
||
| 65 | */ |
||
| 66 | protected $Email = null; |
||
| 67 | |||
| 68 | /** |
||
| 69 | * @var int $IdWebRes |
||
| 70 | */ |
||
| 71 | protected $IdWebRes = null; |
||
| 72 | |||
| 73 | /** |
||
| 74 | * @var int $IdProperty |
||
| 75 | */ |
||
| 76 | protected $IdProperty = null; |
||
| 77 | |||
| 78 | /** |
||
| 79 | * @var int $IdUser |
||
| 80 | */ |
||
| 81 | protected $IdUser = null; |
||
| 82 | |||
| 83 | /** |
||
| 84 | * @var string $DefaultLanguage |
||
| 85 | */ |
||
| 86 | protected $DefaultLanguage = null; |
||
| 87 | |||
| 88 | /** |
||
| 89 | * @var int $MinDayFromHotelDate |
||
| 90 | */ |
||
| 91 | protected $MinDayFromHotelDate = null; |
||
| 92 | |||
| 93 | /** |
||
| 94 | * @var int $MaxDayFromHotelDate |
||
| 95 | */ |
||
| 96 | protected $MaxDayFromHotelDate = null; |
||
| 97 | |||
| 98 | /** |
||
| 99 | * @var \DateTime $MinDate |
||
| 100 | */ |
||
| 101 | protected $MinDate = null; |
||
| 102 | |||
| 103 | /** |
||
| 104 | * @var \DateTime $MaxDate |
||
| 105 | */ |
||
| 106 | protected $MaxDate = null; |
||
| 107 | |||
| 108 | /** |
||
| 109 | * @var int $MinGuestCount |
||
| 110 | */ |
||
| 111 | protected $MinGuestCount = null; |
||
| 112 | |||
| 113 | /** |
||
| 114 | * @var int $MaxGuestCount |
||
| 115 | */ |
||
| 116 | protected $MaxGuestCount = null; |
||
| 117 | |||
| 118 | /** |
||
| 119 | * @var int $MaxChildCount |
||
| 120 | */ |
||
| 121 | protected $MaxChildCount = null; |
||
| 122 | |||
| 123 | /** |
||
| 124 | * @var boolean $AllowModification |
||
| 125 | */ |
||
| 126 | protected $AllowModification = null; |
||
| 127 | |||
| 128 | /** |
||
| 129 | * @var boolean $AllowCancellation |
||
| 130 | */ |
||
| 131 | protected $AllowCancellation = null; |
||
| 132 | |||
| 133 | /** |
||
| 134 | * @var boolean $AutoSendConfirm |
||
| 135 | */ |
||
| 136 | protected $AutoSendConfirm = null; |
||
| 137 | |||
| 138 | /** |
||
| 139 | * @var boolean $Active |
||
| 140 | */ |
||
| 141 | protected $Active = null; |
||
| 142 | |||
| 143 | /** |
||
| 144 | * @var boolean $IsRoomTypeOverbook |
||
| 145 | */ |
||
| 146 | protected $IsRoomTypeOverbook = null; |
||
| 147 | |||
| 148 | /** |
||
| 149 | * @var int $DefaultManualRateReason |
||
| 150 | */ |
||
| 151 | protected $DefaultManualRateReason = null; |
||
| 152 | |||
| 153 | /** |
||
| 154 | * @var boolean $IsFirstLetterOfNameInUppercase |
||
| 155 | */ |
||
| 156 | protected $IsFirstLetterOfNameInUppercase = null; |
||
| 157 | |||
| 158 | /** |
||
| 159 | * @var boolean $IsECheckActive |
||
| 160 | */ |
||
| 161 | protected $IsECheckActive = null; |
||
| 162 | |||
| 163 | /** |
||
| 164 | * @var int $InventoryControl |
||
| 165 | */ |
||
| 166 | protected $InventoryControl = null; |
||
| 167 | |||
| 168 | /** |
||
| 169 | * @var boolean $IsActivePaypal |
||
| 170 | */ |
||
| 171 | protected $IsActivePaypal = null; |
||
| 172 | |||
| 173 | /** |
||
| 174 | * @var int $ID_TrnPaypal |
||
| 175 | */ |
||
| 176 | protected $ID_TrnPaypal = null; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * @var boolean $IsGlobalOverbook |
||
| 180 | */ |
||
| 181 | protected $IsGlobalOverbook = null; |
||
| 182 | |||
| 183 | /** |
||
| 184 | * @var int $MinLenghtOfStay |
||
| 185 | */ |
||
| 186 | protected $MinLenghtOfStay = null; |
||
| 187 | |||
| 188 | /** |
||
| 189 | * @var int $MaxLenghtOfStay |
||
| 190 | */ |
||
| 191 | protected $MaxLenghtOfStay = null; |
||
| 192 | |||
| 193 | /** |
||
| 194 | * @var boolean $NamesInUppercase |
||
| 195 | */ |
||
| 196 | protected $NamesInUppercase = null; |
||
| 197 | |||
| 198 | /** |
||
| 199 | * @var boolean $RoomFirst |
||
| 200 | */ |
||
| 201 | protected $RoomFirst = null; |
||
| 202 | |||
| 203 | /** |
||
| 204 | * @var boolean $SendEmailConfirmation |
||
| 205 | */ |
||
| 206 | protected $SendEmailConfirmation = null; |
||
| 207 | |||
| 208 | /** |
||
| 209 | * @var boolean $InstantEmailConfirmation |
||
| 210 | */ |
||
| 211 | protected $InstantEmailConfirmation = null; |
||
| 212 | |||
| 213 | /** |
||
| 214 | * @var int $DefaultidSceBusiness |
||
| 215 | */ |
||
| 216 | protected $DefaultidSceBusiness = null; |
||
| 217 | |||
| 218 | /** |
||
| 219 | * @var int $NextWebResNumber |
||
| 220 | */ |
||
| 221 | protected $NextWebResNumber = null; |
||
| 222 | |||
| 223 | /** |
||
| 224 | * @var boolean $IsFirstNameRequired |
||
| 225 | */ |
||
| 226 | protected $IsFirstNameRequired = null; |
||
| 227 | |||
| 228 | /** |
||
| 229 | * @var boolean $IsCompanyRequired |
||
| 230 | */ |
||
| 231 | protected $IsCompanyRequired = null; |
||
| 232 | |||
| 233 | /** |
||
| 234 | * @var boolean $IsAdressRequired |
||
| 235 | */ |
||
| 236 | protected $IsAdressRequired = null; |
||
| 237 | |||
| 238 | /** |
||
| 239 | * @var boolean $IsCityRequired |
||
| 240 | */ |
||
| 241 | protected $IsCityRequired = null; |
||
| 242 | |||
| 243 | /** |
||
| 244 | * @var boolean $IsStateProvRequired |
||
| 245 | */ |
||
| 246 | protected $IsStateProvRequired = null; |
||
| 247 | |||
| 248 | /** |
||
| 249 | * @var boolean $IsZipCodeRequired |
||
| 250 | */ |
||
| 251 | protected $IsZipCodeRequired = null; |
||
| 252 | |||
| 253 | /** |
||
| 254 | * @var boolean $IsCountryRequired |
||
| 255 | */ |
||
| 256 | protected $IsCountryRequired = null; |
||
| 257 | |||
| 258 | /** |
||
| 259 | * @var boolean $IsPhoneRequired |
||
| 260 | */ |
||
| 261 | protected $IsPhoneRequired = null; |
||
| 262 | |||
| 263 | /** |
||
| 264 | * @var boolean $IsEmailRequired |
||
| 265 | */ |
||
| 266 | protected $IsEmailRequired = null; |
||
| 267 | |||
| 268 | /** |
||
| 269 | * @var boolean $IsccRequired |
||
| 270 | */ |
||
| 271 | protected $IsccRequired = null; |
||
| 272 | |||
| 273 | /** |
||
| 274 | * @var int $MaxChildAge |
||
| 275 | */ |
||
| 276 | protected $MaxChildAge = null; |
||
| 277 | |||
| 278 | /** |
||
| 279 | * @var int $DefaultidGuestType |
||
| 280 | */ |
||
| 281 | protected $DefaultidGuestType = null; |
||
| 282 | |||
| 283 | /** |
||
| 284 | * @var int $DefaultidGeographic |
||
| 285 | */ |
||
| 286 | protected $DefaultidGeographic = null; |
||
| 287 | |||
| 288 | /** |
||
| 289 | * @var int $DefaultAdultQty |
||
| 290 | */ |
||
| 291 | protected $DefaultAdultQty = null; |
||
| 292 | |||
| 293 | /** |
||
| 294 | * @var boolean $ShowRooms |
||
| 295 | */ |
||
| 296 | protected $ShowRooms = null; |
||
| 297 | |||
| 298 | /** |
||
| 299 | * @var boolean $AcceptExpiredCCAtCheckOut |
||
| 300 | */ |
||
| 301 | protected $AcceptExpiredCCAtCheckOut = null; |
||
| 302 | |||
| 303 | /** |
||
| 304 | * @var string $HotelImageUrl |
||
| 305 | */ |
||
| 306 | protected $HotelImageUrl = null; |
||
| 307 | |||
| 308 | /** |
||
| 309 | * @var string $HotelDescription |
||
| 310 | */ |
||
| 311 | protected $HotelDescription = null; |
||
| 312 | |||
| 313 | /** |
||
| 314 | * @var string $HotelPoliciesEnglish |
||
| 315 | */ |
||
| 316 | protected $HotelPoliciesEnglish = null; |
||
| 317 | |||
| 318 | /** |
||
| 319 | * @var string $HotelPoliciesFrench |
||
| 320 | */ |
||
| 321 | protected $HotelPoliciesFrench = null; |
||
| 322 | |||
| 323 | /** |
||
| 324 | * @var string $HotelPoliciesSpanish |
||
| 325 | */ |
||
| 326 | protected $HotelPoliciesSpanish = null; |
||
| 327 | |||
| 328 | /** |
||
| 329 | * @var boolean $IsPromoEnable |
||
| 330 | */ |
||
| 331 | protected $IsPromoEnable = null; |
||
| 332 | |||
| 333 | /** |
||
| 334 | * @var int $MultiHotelDefaultIDRoomType |
||
| 335 | */ |
||
| 336 | protected $MultiHotelDefaultIDRoomType = null; |
||
| 337 | |||
| 338 | /** |
||
| 339 | * @var int $MultiHotelDefaultIDRateCode |
||
| 340 | */ |
||
| 341 | protected $MultiHotelDefaultIDRateCode = null; |
||
| 342 | |||
| 343 | /** |
||
| 344 | * @var boolean $IsAdultsChildrenNotVisible |
||
| 345 | */ |
||
| 346 | protected $IsAdultsChildrenNotVisible = null; |
||
| 347 | |||
| 348 | /** |
||
| 349 | * @var boolean $IsRoomNoHidden |
||
| 350 | */ |
||
| 351 | protected $IsRoomNoHidden = null; |
||
| 352 | |||
| 353 | /** |
||
| 354 | * @var boolean $IsAscendingRank |
||
| 355 | */ |
||
| 356 | protected $IsAscendingRank = null; |
||
| 357 | |||
| 358 | /** |
||
| 359 | * @var boolean $IsTravelInsEnable |
||
| 360 | */ |
||
| 361 | protected $IsTravelInsEnable = null; |
||
| 362 | |||
| 363 | /** |
||
| 364 | * @var boolean $IsMailing |
||
| 365 | */ |
||
| 366 | protected $IsMailing = null; |
||
| 367 | |||
| 368 | /** |
||
| 369 | * @var boolean $IsGroupShowMasterBalance |
||
| 370 | */ |
||
| 371 | protected $IsGroupShowMasterBalance = null; |
||
| 372 | |||
| 373 | /** |
||
| 374 | * @var boolean $IsGroupAllowCancel |
||
| 375 | */ |
||
| 376 | protected $IsGroupAllowCancel = null; |
||
| 377 | |||
| 378 | /** |
||
| 379 | * @var boolean $IsGroupAllowChangeLoginPassword |
||
| 380 | */ |
||
| 381 | protected $IsGroupAllowChangeLoginPassword = null; |
||
| 382 | |||
| 383 | /** |
||
| 384 | * @var boolean $IsGrpIndBookingEnable |
||
| 385 | */ |
||
| 386 | protected $IsGrpIndBookingEnable = null; |
||
| 387 | |||
| 388 | /** |
||
| 389 | * @var boolean $IsLimitativeInWEB |
||
| 390 | */ |
||
| 391 | protected $IsLimitativeInWEB = null; |
||
| 392 | |||
| 393 | /** |
||
| 394 | * @param \DateTime $LoadTime |
||
| 395 | * @param \DateTime $CurrentHotelDate |
||
| 396 | * @param int $CurrencyId |
||
| 397 | * @param int $IdWebRes |
||
| 398 | * @param int $IdProperty |
||
| 399 | * @param int $IdUser |
||
| 400 | * @param int $MinDayFromHotelDate |
||
| 401 | * @param int $MaxDayFromHotelDate |
||
| 402 | * @param \DateTime $MinDate |
||
| 403 | * @param \DateTime $MaxDate |
||
| 404 | * @param int $MinGuestCount |
||
| 405 | * @param int $MaxGuestCount |
||
| 406 | * @param int $MaxChildCount |
||
| 407 | * @param boolean $AllowModification |
||
| 408 | * @param boolean $AllowCancellation |
||
| 409 | * @param boolean $AutoSendConfirm |
||
| 410 | * @param boolean $Active |
||
| 411 | * @param boolean $IsRoomTypeOverbook |
||
| 412 | * @param int $DefaultManualRateReason |
||
| 413 | * @param boolean $IsFirstLetterOfNameInUppercase |
||
| 414 | * @param boolean $IsECheckActive |
||
| 415 | * @param int $InventoryControl |
||
| 416 | * @param boolean $IsActivePaypal |
||
| 417 | * @param int $ID_TrnPaypal |
||
| 418 | * @param boolean $IsGlobalOverbook |
||
| 419 | * @param int $MinLenghtOfStay |
||
| 420 | * @param int $MaxLenghtOfStay |
||
| 421 | * @param boolean $NamesInUppercase |
||
| 422 | * @param boolean $RoomFirst |
||
| 423 | * @param boolean $SendEmailConfirmation |
||
| 424 | * @param boolean $InstantEmailConfirmation |
||
| 425 | * @param int $DefaultidSceBusiness |
||
| 426 | * @param int $NextWebResNumber |
||
| 427 | * @param boolean $IsFirstNameRequired |
||
| 428 | * @param boolean $IsCompanyRequired |
||
| 429 | * @param boolean $IsAdressRequired |
||
| 430 | * @param boolean $IsCityRequired |
||
| 431 | * @param boolean $IsStateProvRequired |
||
| 432 | * @param boolean $IsZipCodeRequired |
||
| 433 | * @param boolean $IsCountryRequired |
||
| 434 | * @param boolean $IsPhoneRequired |
||
| 435 | * @param boolean $IsEmailRequired |
||
| 436 | * @param boolean $IsccRequired |
||
| 437 | * @param int $MaxChildAge |
||
| 438 | * @param int $DefaultidGuestType |
||
| 439 | * @param int $DefaultidGeographic |
||
| 440 | * @param int $DefaultAdultQty |
||
| 441 | * @param boolean $ShowRooms |
||
| 442 | * @param boolean $AcceptExpiredCCAtCheckOut |
||
| 443 | * @param boolean $IsPromoEnable |
||
| 444 | * @param int $MultiHotelDefaultIDRoomType |
||
| 445 | * @param int $MultiHotelDefaultIDRateCode |
||
| 446 | * @param boolean $IsAdultsChildrenNotVisible |
||
| 447 | * @param boolean $IsRoomNoHidden |
||
| 448 | * @param boolean $IsAscendingRank |
||
| 449 | * @param boolean $IsTravelInsEnable |
||
| 450 | * @param boolean $IsMailing |
||
| 451 | * @param boolean $IsGroupShowMasterBalance |
||
| 452 | * @param boolean $IsGroupAllowCancel |
||
| 453 | * @param boolean $IsGroupAllowChangeLoginPassword |
||
| 454 | * @param boolean $IsGrpIndBookingEnable |
||
| 455 | * @param boolean $IsLimitativeInWEB |
||
| 456 | */ |
||
| 457 | public function __construct(\DateTime $LoadTime, \DateTime $CurrentHotelDate, $CurrencyId, $IdWebRes, $IdProperty, $IdUser, $MinDayFromHotelDate, $MaxDayFromHotelDate, \DateTime $MinDate, \DateTime $MaxDate, $MinGuestCount, $MaxGuestCount, $MaxChildCount, $AllowModification, $AllowCancellation, $AutoSendConfirm, $Active, $IsRoomTypeOverbook, $DefaultManualRateReason, $IsFirstLetterOfNameInUppercase, $IsECheckActive, $InventoryControl, $IsActivePaypal, $ID_TrnPaypal, $IsGlobalOverbook, $MinLenghtOfStay, $MaxLenghtOfStay, $NamesInUppercase, $RoomFirst, $SendEmailConfirmation, $InstantEmailConfirmation, $DefaultidSceBusiness, $NextWebResNumber, $IsFirstNameRequired, $IsCompanyRequired, $IsAdressRequired, $IsCityRequired, $IsStateProvRequired, $IsZipCodeRequired, $IsCountryRequired, $IsPhoneRequired, $IsEmailRequired, $IsccRequired, $MaxChildAge, $DefaultidGuestType, $DefaultidGeographic, $DefaultAdultQty, $ShowRooms, $AcceptExpiredCCAtCheckOut, $IsPromoEnable, $MultiHotelDefaultIDRoomType, $MultiHotelDefaultIDRateCode, $IsAdultsChildrenNotVisible, $IsRoomNoHidden, $IsAscendingRank, $IsTravelInsEnable, $IsMailing, $IsGroupShowMasterBalance, $IsGroupAllowCancel, $IsGroupAllowChangeLoginPassword, $IsGrpIndBookingEnable, $IsLimitativeInWEB) |
||
| 522 | |||
| 523 | /** |
||
| 524 | * @return \DateTime |
||
| 525 | */ |
||
| 526 | public function getLoadTime() |
||
| 538 | |||
| 539 | /** |
||
| 540 | * @param \DateTime $LoadTime |
||
| 541 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 542 | */ |
||
| 543 | public function setLoadTime(\DateTime $LoadTime) |
||
| 548 | |||
| 549 | /** |
||
| 550 | * @return \DateTime |
||
| 551 | */ |
||
| 552 | public function getCurrentHotelDate() |
||
| 564 | |||
| 565 | /** |
||
| 566 | * @param \DateTime $CurrentHotelDate |
||
| 567 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 568 | */ |
||
| 569 | public function setCurrentHotelDate(\DateTime $CurrentHotelDate) |
||
| 574 | |||
| 575 | /** |
||
| 576 | * @return string |
||
| 577 | */ |
||
| 578 | public function getPropertyName() |
||
| 582 | |||
| 583 | /** |
||
| 584 | * @param string $PropertyName |
||
| 585 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 586 | */ |
||
| 587 | public function setPropertyName($PropertyName) |
||
| 592 | |||
| 593 | /** |
||
| 594 | * @return string |
||
| 595 | */ |
||
| 596 | public function getCurrencySymbol() |
||
| 600 | |||
| 601 | /** |
||
| 602 | * @param string $CurrencySymbol |
||
| 603 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 604 | */ |
||
| 605 | public function setCurrencySymbol($CurrencySymbol) |
||
| 610 | |||
| 611 | /** |
||
| 612 | * @return int |
||
| 613 | */ |
||
| 614 | public function getCurrencyId() |
||
| 618 | |||
| 619 | /** |
||
| 620 | * @param int $CurrencyId |
||
| 621 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 622 | */ |
||
| 623 | public function setCurrencyId($CurrencyId) |
||
| 628 | |||
| 629 | /** |
||
| 630 | * @return string |
||
| 631 | */ |
||
| 632 | public function getAddress() |
||
| 636 | |||
| 637 | /** |
||
| 638 | * @param string $Address |
||
| 639 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 640 | */ |
||
| 641 | public function setAddress($Address) |
||
| 646 | |||
| 647 | /** |
||
| 648 | * @return string |
||
| 649 | */ |
||
| 650 | public function getState() |
||
| 654 | |||
| 655 | /** |
||
| 656 | * @param string $State |
||
| 657 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 658 | */ |
||
| 659 | public function setState($State) |
||
| 664 | |||
| 665 | /** |
||
| 666 | * @return string |
||
| 667 | */ |
||
| 668 | public function getCountry() |
||
| 672 | |||
| 673 | /** |
||
| 674 | * @param string $Country |
||
| 675 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 676 | */ |
||
| 677 | public function setCountry($Country) |
||
| 682 | |||
| 683 | /** |
||
| 684 | * @return string |
||
| 685 | */ |
||
| 686 | public function getCity() |
||
| 690 | |||
| 691 | /** |
||
| 692 | * @param string $City |
||
| 693 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 694 | */ |
||
| 695 | public function setCity($City) |
||
| 700 | |||
| 701 | /** |
||
| 702 | * @return string |
||
| 703 | */ |
||
| 704 | public function getPhone800() |
||
| 708 | |||
| 709 | /** |
||
| 710 | * @param string $Phone800 |
||
| 711 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 712 | */ |
||
| 713 | public function setPhone800($Phone800) |
||
| 718 | |||
| 719 | /** |
||
| 720 | * @return string |
||
| 721 | */ |
||
| 722 | public function getPhone() |
||
| 726 | |||
| 727 | /** |
||
| 728 | * @param string $Phone |
||
| 729 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 730 | */ |
||
| 731 | public function setPhone($Phone) |
||
| 736 | |||
| 737 | /** |
||
| 738 | * @return string |
||
| 739 | */ |
||
| 740 | public function getEmail() |
||
| 744 | |||
| 745 | /** |
||
| 746 | * @param string $Email |
||
| 747 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 748 | */ |
||
| 749 | public function setEmail($Email) |
||
| 754 | |||
| 755 | /** |
||
| 756 | * @return int |
||
| 757 | */ |
||
| 758 | public function getIdWebRes() |
||
| 762 | |||
| 763 | /** |
||
| 764 | * @param int $IdWebRes |
||
| 765 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 766 | */ |
||
| 767 | public function setIdWebRes($IdWebRes) |
||
| 772 | |||
| 773 | /** |
||
| 774 | * @return int |
||
| 775 | */ |
||
| 776 | public function getIdProperty() |
||
| 780 | |||
| 781 | /** |
||
| 782 | * @param int $IdProperty |
||
| 783 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 784 | */ |
||
| 785 | public function setIdProperty($IdProperty) |
||
| 790 | |||
| 791 | /** |
||
| 792 | * @return int |
||
| 793 | */ |
||
| 794 | public function getIdUser() |
||
| 798 | |||
| 799 | /** |
||
| 800 | * @param int $IdUser |
||
| 801 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 802 | */ |
||
| 803 | public function setIdUser($IdUser) |
||
| 808 | |||
| 809 | /** |
||
| 810 | * @return string |
||
| 811 | */ |
||
| 812 | public function getDefaultLanguage() |
||
| 816 | |||
| 817 | /** |
||
| 818 | * @param string $DefaultLanguage |
||
| 819 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 820 | */ |
||
| 821 | public function setDefaultLanguage($DefaultLanguage) |
||
| 826 | |||
| 827 | /** |
||
| 828 | * @return int |
||
| 829 | */ |
||
| 830 | public function getMinDayFromHotelDate() |
||
| 834 | |||
| 835 | /** |
||
| 836 | * @param int $MinDayFromHotelDate |
||
| 837 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 838 | */ |
||
| 839 | public function setMinDayFromHotelDate($MinDayFromHotelDate) |
||
| 844 | |||
| 845 | /** |
||
| 846 | * @return int |
||
| 847 | */ |
||
| 848 | public function getMaxDayFromHotelDate() |
||
| 852 | |||
| 853 | /** |
||
| 854 | * @param int $MaxDayFromHotelDate |
||
| 855 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 856 | */ |
||
| 857 | public function setMaxDayFromHotelDate($MaxDayFromHotelDate) |
||
| 862 | |||
| 863 | /** |
||
| 864 | * @return \DateTime |
||
| 865 | */ |
||
| 866 | public function getMinDate() |
||
| 878 | |||
| 879 | /** |
||
| 880 | * @param \DateTime $MinDate |
||
| 881 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 882 | */ |
||
| 883 | public function setMinDate(\DateTime $MinDate) |
||
| 888 | |||
| 889 | /** |
||
| 890 | * @return \DateTime |
||
| 891 | */ |
||
| 892 | public function getMaxDate() |
||
| 904 | |||
| 905 | /** |
||
| 906 | * @param \DateTime $MaxDate |
||
| 907 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 908 | */ |
||
| 909 | public function setMaxDate(\DateTime $MaxDate) |
||
| 914 | |||
| 915 | /** |
||
| 916 | * @return int |
||
| 917 | */ |
||
| 918 | public function getMinGuestCount() |
||
| 922 | |||
| 923 | /** |
||
| 924 | * @param int $MinGuestCount |
||
| 925 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 926 | */ |
||
| 927 | public function setMinGuestCount($MinGuestCount) |
||
| 932 | |||
| 933 | /** |
||
| 934 | * @return int |
||
| 935 | */ |
||
| 936 | public function getMaxGuestCount() |
||
| 940 | |||
| 941 | /** |
||
| 942 | * @param int $MaxGuestCount |
||
| 943 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 944 | */ |
||
| 945 | public function setMaxGuestCount($MaxGuestCount) |
||
| 950 | |||
| 951 | /** |
||
| 952 | * @return int |
||
| 953 | */ |
||
| 954 | public function getMaxChildCount() |
||
| 958 | |||
| 959 | /** |
||
| 960 | * @param int $MaxChildCount |
||
| 961 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 962 | */ |
||
| 963 | public function setMaxChildCount($MaxChildCount) |
||
| 968 | |||
| 969 | /** |
||
| 970 | * @return boolean |
||
| 971 | */ |
||
| 972 | public function getAllowModification() |
||
| 976 | |||
| 977 | /** |
||
| 978 | * @param boolean $AllowModification |
||
| 979 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 980 | */ |
||
| 981 | public function setAllowModification($AllowModification) |
||
| 986 | |||
| 987 | /** |
||
| 988 | * @return boolean |
||
| 989 | */ |
||
| 990 | public function getAllowCancellation() |
||
| 994 | |||
| 995 | /** |
||
| 996 | * @param boolean $AllowCancellation |
||
| 997 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 998 | */ |
||
| 999 | public function setAllowCancellation($AllowCancellation) |
||
| 1004 | |||
| 1005 | /** |
||
| 1006 | * @return boolean |
||
| 1007 | */ |
||
| 1008 | public function getAutoSendConfirm() |
||
| 1012 | |||
| 1013 | /** |
||
| 1014 | * @param boolean $AutoSendConfirm |
||
| 1015 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1016 | */ |
||
| 1017 | public function setAutoSendConfirm($AutoSendConfirm) |
||
| 1022 | |||
| 1023 | /** |
||
| 1024 | * @return boolean |
||
| 1025 | */ |
||
| 1026 | public function getActive() |
||
| 1030 | |||
| 1031 | /** |
||
| 1032 | * @param boolean $Active |
||
| 1033 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1034 | */ |
||
| 1035 | public function setActive($Active) |
||
| 1040 | |||
| 1041 | /** |
||
| 1042 | * @return boolean |
||
| 1043 | */ |
||
| 1044 | public function getIsRoomTypeOverbook() |
||
| 1048 | |||
| 1049 | /** |
||
| 1050 | * @param boolean $IsRoomTypeOverbook |
||
| 1051 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1052 | */ |
||
| 1053 | public function setIsRoomTypeOverbook($IsRoomTypeOverbook) |
||
| 1058 | |||
| 1059 | /** |
||
| 1060 | * @return int |
||
| 1061 | */ |
||
| 1062 | public function getDefaultManualRateReason() |
||
| 1066 | |||
| 1067 | /** |
||
| 1068 | * @param int $DefaultManualRateReason |
||
| 1069 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1070 | */ |
||
| 1071 | public function setDefaultManualRateReason($DefaultManualRateReason) |
||
| 1076 | |||
| 1077 | /** |
||
| 1078 | * @return boolean |
||
| 1079 | */ |
||
| 1080 | public function getIsFirstLetterOfNameInUppercase() |
||
| 1084 | |||
| 1085 | /** |
||
| 1086 | * @param boolean $IsFirstLetterOfNameInUppercase |
||
| 1087 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1088 | */ |
||
| 1089 | public function setIsFirstLetterOfNameInUppercase($IsFirstLetterOfNameInUppercase) |
||
| 1094 | |||
| 1095 | /** |
||
| 1096 | * @return boolean |
||
| 1097 | */ |
||
| 1098 | public function getIsECheckActive() |
||
| 1102 | |||
| 1103 | /** |
||
| 1104 | * @param boolean $IsECheckActive |
||
| 1105 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1106 | */ |
||
| 1107 | public function setIsECheckActive($IsECheckActive) |
||
| 1112 | |||
| 1113 | /** |
||
| 1114 | * @return int |
||
| 1115 | */ |
||
| 1116 | public function getInventoryControl() |
||
| 1120 | |||
| 1121 | /** |
||
| 1122 | * @param int $InventoryControl |
||
| 1123 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1124 | */ |
||
| 1125 | public function setInventoryControl($InventoryControl) |
||
| 1130 | |||
| 1131 | /** |
||
| 1132 | * @return boolean |
||
| 1133 | */ |
||
| 1134 | public function getIsActivePaypal() |
||
| 1138 | |||
| 1139 | /** |
||
| 1140 | * @param boolean $IsActivePaypal |
||
| 1141 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1142 | */ |
||
| 1143 | public function setIsActivePaypal($IsActivePaypal) |
||
| 1148 | |||
| 1149 | /** |
||
| 1150 | * @return int |
||
| 1151 | */ |
||
| 1152 | public function getID_TrnPaypal() |
||
| 1156 | |||
| 1157 | /** |
||
| 1158 | * @param int $ID_TrnPaypal |
||
| 1159 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1160 | */ |
||
| 1161 | public function setID_TrnPaypal($ID_TrnPaypal) |
||
| 1166 | |||
| 1167 | /** |
||
| 1168 | * @return boolean |
||
| 1169 | */ |
||
| 1170 | public function getIsGlobalOverbook() |
||
| 1174 | |||
| 1175 | /** |
||
| 1176 | * @param boolean $IsGlobalOverbook |
||
| 1177 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1178 | */ |
||
| 1179 | public function setIsGlobalOverbook($IsGlobalOverbook) |
||
| 1184 | |||
| 1185 | /** |
||
| 1186 | * @return int |
||
| 1187 | */ |
||
| 1188 | public function getMinLenghtOfStay() |
||
| 1192 | |||
| 1193 | /** |
||
| 1194 | * @param int $MinLenghtOfStay |
||
| 1195 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1196 | */ |
||
| 1197 | public function setMinLenghtOfStay($MinLenghtOfStay) |
||
| 1202 | |||
| 1203 | /** |
||
| 1204 | * @return int |
||
| 1205 | */ |
||
| 1206 | public function getMaxLenghtOfStay() |
||
| 1210 | |||
| 1211 | /** |
||
| 1212 | * @param int $MaxLenghtOfStay |
||
| 1213 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1214 | */ |
||
| 1215 | public function setMaxLenghtOfStay($MaxLenghtOfStay) |
||
| 1220 | |||
| 1221 | /** |
||
| 1222 | * @return boolean |
||
| 1223 | */ |
||
| 1224 | public function getNamesInUppercase() |
||
| 1228 | |||
| 1229 | /** |
||
| 1230 | * @param boolean $NamesInUppercase |
||
| 1231 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1232 | */ |
||
| 1233 | public function setNamesInUppercase($NamesInUppercase) |
||
| 1238 | |||
| 1239 | /** |
||
| 1240 | * @return boolean |
||
| 1241 | */ |
||
| 1242 | public function getRoomFirst() |
||
| 1246 | |||
| 1247 | /** |
||
| 1248 | * @param boolean $RoomFirst |
||
| 1249 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1250 | */ |
||
| 1251 | public function setRoomFirst($RoomFirst) |
||
| 1256 | |||
| 1257 | /** |
||
| 1258 | * @return boolean |
||
| 1259 | */ |
||
| 1260 | public function getSendEmailConfirmation() |
||
| 1264 | |||
| 1265 | /** |
||
| 1266 | * @param boolean $SendEmailConfirmation |
||
| 1267 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1268 | */ |
||
| 1269 | public function setSendEmailConfirmation($SendEmailConfirmation) |
||
| 1274 | |||
| 1275 | /** |
||
| 1276 | * @return boolean |
||
| 1277 | */ |
||
| 1278 | public function getInstantEmailConfirmation() |
||
| 1282 | |||
| 1283 | /** |
||
| 1284 | * @param boolean $InstantEmailConfirmation |
||
| 1285 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1286 | */ |
||
| 1287 | public function setInstantEmailConfirmation($InstantEmailConfirmation) |
||
| 1292 | |||
| 1293 | /** |
||
| 1294 | * @return int |
||
| 1295 | */ |
||
| 1296 | public function getDefaultidSceBusiness() |
||
| 1300 | |||
| 1301 | /** |
||
| 1302 | * @param int $DefaultidSceBusiness |
||
| 1303 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1304 | */ |
||
| 1305 | public function setDefaultidSceBusiness($DefaultidSceBusiness) |
||
| 1310 | |||
| 1311 | /** |
||
| 1312 | * @return int |
||
| 1313 | */ |
||
| 1314 | public function getNextWebResNumber() |
||
| 1318 | |||
| 1319 | /** |
||
| 1320 | * @param int $NextWebResNumber |
||
| 1321 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1322 | */ |
||
| 1323 | public function setNextWebResNumber($NextWebResNumber) |
||
| 1328 | |||
| 1329 | /** |
||
| 1330 | * @return boolean |
||
| 1331 | */ |
||
| 1332 | public function getIsFirstNameRequired() |
||
| 1336 | |||
| 1337 | /** |
||
| 1338 | * @param boolean $IsFirstNameRequired |
||
| 1339 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1340 | */ |
||
| 1341 | public function setIsFirstNameRequired($IsFirstNameRequired) |
||
| 1346 | |||
| 1347 | /** |
||
| 1348 | * @return boolean |
||
| 1349 | */ |
||
| 1350 | public function getIsCompanyRequired() |
||
| 1354 | |||
| 1355 | /** |
||
| 1356 | * @param boolean $IsCompanyRequired |
||
| 1357 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1358 | */ |
||
| 1359 | public function setIsCompanyRequired($IsCompanyRequired) |
||
| 1364 | |||
| 1365 | /** |
||
| 1366 | * @return boolean |
||
| 1367 | */ |
||
| 1368 | public function getIsAdressRequired() |
||
| 1372 | |||
| 1373 | /** |
||
| 1374 | * @param boolean $IsAdressRequired |
||
| 1375 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1376 | */ |
||
| 1377 | public function setIsAdressRequired($IsAdressRequired) |
||
| 1382 | |||
| 1383 | /** |
||
| 1384 | * @return boolean |
||
| 1385 | */ |
||
| 1386 | public function getIsCityRequired() |
||
| 1390 | |||
| 1391 | /** |
||
| 1392 | * @param boolean $IsCityRequired |
||
| 1393 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1394 | */ |
||
| 1395 | public function setIsCityRequired($IsCityRequired) |
||
| 1400 | |||
| 1401 | /** |
||
| 1402 | * @return boolean |
||
| 1403 | */ |
||
| 1404 | public function getIsStateProvRequired() |
||
| 1408 | |||
| 1409 | /** |
||
| 1410 | * @param boolean $IsStateProvRequired |
||
| 1411 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1412 | */ |
||
| 1413 | public function setIsStateProvRequired($IsStateProvRequired) |
||
| 1418 | |||
| 1419 | /** |
||
| 1420 | * @return boolean |
||
| 1421 | */ |
||
| 1422 | public function getIsZipCodeRequired() |
||
| 1426 | |||
| 1427 | /** |
||
| 1428 | * @param boolean $IsZipCodeRequired |
||
| 1429 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1430 | */ |
||
| 1431 | public function setIsZipCodeRequired($IsZipCodeRequired) |
||
| 1436 | |||
| 1437 | /** |
||
| 1438 | * @return boolean |
||
| 1439 | */ |
||
| 1440 | public function getIsCountryRequired() |
||
| 1444 | |||
| 1445 | /** |
||
| 1446 | * @param boolean $IsCountryRequired |
||
| 1447 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1448 | */ |
||
| 1449 | public function setIsCountryRequired($IsCountryRequired) |
||
| 1454 | |||
| 1455 | /** |
||
| 1456 | * @return boolean |
||
| 1457 | */ |
||
| 1458 | public function getIsPhoneRequired() |
||
| 1462 | |||
| 1463 | /** |
||
| 1464 | * @param boolean $IsPhoneRequired |
||
| 1465 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1466 | */ |
||
| 1467 | public function setIsPhoneRequired($IsPhoneRequired) |
||
| 1472 | |||
| 1473 | /** |
||
| 1474 | * @return boolean |
||
| 1475 | */ |
||
| 1476 | public function getIsEmailRequired() |
||
| 1480 | |||
| 1481 | /** |
||
| 1482 | * @param boolean $IsEmailRequired |
||
| 1483 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1484 | */ |
||
| 1485 | public function setIsEmailRequired($IsEmailRequired) |
||
| 1490 | |||
| 1491 | /** |
||
| 1492 | * @return boolean |
||
| 1493 | */ |
||
| 1494 | public function getIsccRequired() |
||
| 1498 | |||
| 1499 | /** |
||
| 1500 | * @param boolean $IsccRequired |
||
| 1501 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1502 | */ |
||
| 1503 | public function setIsccRequired($IsccRequired) |
||
| 1508 | |||
| 1509 | /** |
||
| 1510 | * @return int |
||
| 1511 | */ |
||
| 1512 | public function getMaxChildAge() |
||
| 1516 | |||
| 1517 | /** |
||
| 1518 | * @param int $MaxChildAge |
||
| 1519 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1520 | */ |
||
| 1521 | public function setMaxChildAge($MaxChildAge) |
||
| 1526 | |||
| 1527 | /** |
||
| 1528 | * @return int |
||
| 1529 | */ |
||
| 1530 | public function getDefaultidGuestType() |
||
| 1534 | |||
| 1535 | /** |
||
| 1536 | * @param int $DefaultidGuestType |
||
| 1537 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1538 | */ |
||
| 1539 | public function setDefaultidGuestType($DefaultidGuestType) |
||
| 1544 | |||
| 1545 | /** |
||
| 1546 | * @return int |
||
| 1547 | */ |
||
| 1548 | public function getDefaultidGeographic() |
||
| 1552 | |||
| 1553 | /** |
||
| 1554 | * @param int $DefaultidGeographic |
||
| 1555 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1556 | */ |
||
| 1557 | public function setDefaultidGeographic($DefaultidGeographic) |
||
| 1562 | |||
| 1563 | /** |
||
| 1564 | * @return int |
||
| 1565 | */ |
||
| 1566 | public function getDefaultAdultQty() |
||
| 1570 | |||
| 1571 | /** |
||
| 1572 | * @param int $DefaultAdultQty |
||
| 1573 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1574 | */ |
||
| 1575 | public function setDefaultAdultQty($DefaultAdultQty) |
||
| 1580 | |||
| 1581 | /** |
||
| 1582 | * @return boolean |
||
| 1583 | */ |
||
| 1584 | public function getShowRooms() |
||
| 1588 | |||
| 1589 | /** |
||
| 1590 | * @param boolean $ShowRooms |
||
| 1591 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1592 | */ |
||
| 1593 | public function setShowRooms($ShowRooms) |
||
| 1598 | |||
| 1599 | /** |
||
| 1600 | * @return boolean |
||
| 1601 | */ |
||
| 1602 | public function getAcceptExpiredCCAtCheckOut() |
||
| 1606 | |||
| 1607 | /** |
||
| 1608 | * @param boolean $AcceptExpiredCCAtCheckOut |
||
| 1609 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1610 | */ |
||
| 1611 | public function setAcceptExpiredCCAtCheckOut($AcceptExpiredCCAtCheckOut) |
||
| 1616 | |||
| 1617 | /** |
||
| 1618 | * @return string |
||
| 1619 | */ |
||
| 1620 | public function getHotelImageUrl() |
||
| 1624 | |||
| 1625 | /** |
||
| 1626 | * @param string $HotelImageUrl |
||
| 1627 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1628 | */ |
||
| 1629 | public function setHotelImageUrl($HotelImageUrl) |
||
| 1634 | |||
| 1635 | /** |
||
| 1636 | * @return string |
||
| 1637 | */ |
||
| 1638 | public function getHotelDescription() |
||
| 1642 | |||
| 1643 | /** |
||
| 1644 | * @param string $HotelDescription |
||
| 1645 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1646 | */ |
||
| 1647 | public function setHotelDescription($HotelDescription) |
||
| 1652 | |||
| 1653 | /** |
||
| 1654 | * @return string |
||
| 1655 | */ |
||
| 1656 | public function getHotelPoliciesEnglish() |
||
| 1660 | |||
| 1661 | /** |
||
| 1662 | * @param string $HotelPoliciesEnglish |
||
| 1663 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1664 | */ |
||
| 1665 | public function setHotelPoliciesEnglish($HotelPoliciesEnglish) |
||
| 1670 | |||
| 1671 | /** |
||
| 1672 | * @return string |
||
| 1673 | */ |
||
| 1674 | public function getHotelPoliciesFrench() |
||
| 1678 | |||
| 1679 | /** |
||
| 1680 | * @param string $HotelPoliciesFrench |
||
| 1681 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1682 | */ |
||
| 1683 | public function setHotelPoliciesFrench($HotelPoliciesFrench) |
||
| 1688 | |||
| 1689 | /** |
||
| 1690 | * @return string |
||
| 1691 | */ |
||
| 1692 | public function getHotelPoliciesSpanish() |
||
| 1696 | |||
| 1697 | /** |
||
| 1698 | * @param string $HotelPoliciesSpanish |
||
| 1699 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1700 | */ |
||
| 1701 | public function setHotelPoliciesSpanish($HotelPoliciesSpanish) |
||
| 1706 | |||
| 1707 | /** |
||
| 1708 | * @return boolean |
||
| 1709 | */ |
||
| 1710 | public function getIsPromoEnable() |
||
| 1714 | |||
| 1715 | /** |
||
| 1716 | * @param boolean $IsPromoEnable |
||
| 1717 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1718 | */ |
||
| 1719 | public function setIsPromoEnable($IsPromoEnable) |
||
| 1724 | |||
| 1725 | /** |
||
| 1726 | * @return int |
||
| 1727 | */ |
||
| 1728 | public function getMultiHotelDefaultIDRoomType() |
||
| 1732 | |||
| 1733 | /** |
||
| 1734 | * @param int $MultiHotelDefaultIDRoomType |
||
| 1735 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1736 | */ |
||
| 1737 | public function setMultiHotelDefaultIDRoomType($MultiHotelDefaultIDRoomType) |
||
| 1742 | |||
| 1743 | /** |
||
| 1744 | * @return int |
||
| 1745 | */ |
||
| 1746 | public function getMultiHotelDefaultIDRateCode() |
||
| 1750 | |||
| 1751 | /** |
||
| 1752 | * @param int $MultiHotelDefaultIDRateCode |
||
| 1753 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1754 | */ |
||
| 1755 | public function setMultiHotelDefaultIDRateCode($MultiHotelDefaultIDRateCode) |
||
| 1760 | |||
| 1761 | /** |
||
| 1762 | * @return boolean |
||
| 1763 | */ |
||
| 1764 | public function getIsAdultsChildrenNotVisible() |
||
| 1768 | |||
| 1769 | /** |
||
| 1770 | * @param boolean $IsAdultsChildrenNotVisible |
||
| 1771 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1772 | */ |
||
| 1773 | public function setIsAdultsChildrenNotVisible($IsAdultsChildrenNotVisible) |
||
| 1778 | |||
| 1779 | /** |
||
| 1780 | * @return boolean |
||
| 1781 | */ |
||
| 1782 | public function getIsRoomNoHidden() |
||
| 1786 | |||
| 1787 | /** |
||
| 1788 | * @param boolean $IsRoomNoHidden |
||
| 1789 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1790 | */ |
||
| 1791 | public function setIsRoomNoHidden($IsRoomNoHidden) |
||
| 1796 | |||
| 1797 | /** |
||
| 1798 | * @return boolean |
||
| 1799 | */ |
||
| 1800 | public function getIsAscendingRank() |
||
| 1804 | |||
| 1805 | /** |
||
| 1806 | * @param boolean $IsAscendingRank |
||
| 1807 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1808 | */ |
||
| 1809 | public function setIsAscendingRank($IsAscendingRank) |
||
| 1814 | |||
| 1815 | /** |
||
| 1816 | * @return boolean |
||
| 1817 | */ |
||
| 1818 | public function getIsTravelInsEnable() |
||
| 1822 | |||
| 1823 | /** |
||
| 1824 | * @param boolean $IsTravelInsEnable |
||
| 1825 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1826 | */ |
||
| 1827 | public function setIsTravelInsEnable($IsTravelInsEnable) |
||
| 1832 | |||
| 1833 | /** |
||
| 1834 | * @return boolean |
||
| 1835 | */ |
||
| 1836 | public function getIsMailing() |
||
| 1840 | |||
| 1841 | /** |
||
| 1842 | * @param boolean $IsMailing |
||
| 1843 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1844 | */ |
||
| 1845 | public function setIsMailing($IsMailing) |
||
| 1850 | |||
| 1851 | /** |
||
| 1852 | * @return boolean |
||
| 1853 | */ |
||
| 1854 | public function getIsGroupShowMasterBalance() |
||
| 1858 | |||
| 1859 | /** |
||
| 1860 | * @param boolean $IsGroupShowMasterBalance |
||
| 1861 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1862 | */ |
||
| 1863 | public function setIsGroupShowMasterBalance($IsGroupShowMasterBalance) |
||
| 1868 | |||
| 1869 | /** |
||
| 1870 | * @return boolean |
||
| 1871 | */ |
||
| 1872 | public function getIsGroupAllowCancel() |
||
| 1876 | |||
| 1877 | /** |
||
| 1878 | * @param boolean $IsGroupAllowCancel |
||
| 1879 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1880 | */ |
||
| 1881 | public function setIsGroupAllowCancel($IsGroupAllowCancel) |
||
| 1886 | |||
| 1887 | /** |
||
| 1888 | * @return boolean |
||
| 1889 | */ |
||
| 1890 | public function getIsGroupAllowChangeLoginPassword() |
||
| 1894 | |||
| 1895 | /** |
||
| 1896 | * @param boolean $IsGroupAllowChangeLoginPassword |
||
| 1897 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1898 | */ |
||
| 1899 | public function setIsGroupAllowChangeLoginPassword($IsGroupAllowChangeLoginPassword) |
||
| 1904 | |||
| 1905 | /** |
||
| 1906 | * @return boolean |
||
| 1907 | */ |
||
| 1908 | public function getIsGrpIndBookingEnable() |
||
| 1912 | |||
| 1913 | /** |
||
| 1914 | * @param boolean $IsGrpIndBookingEnable |
||
| 1915 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1916 | */ |
||
| 1917 | public function setIsGrpIndBookingEnable($IsGrpIndBookingEnable) |
||
| 1922 | |||
| 1923 | /** |
||
| 1924 | * @return boolean |
||
| 1925 | */ |
||
| 1926 | public function getIsLimitativeInWEB() |
||
| 1930 | |||
| 1931 | /** |
||
| 1932 | * @param boolean $IsLimitativeInWEB |
||
| 1933 | * @return \Gueststream\PMS\IQWare\API\WebResConfig |
||
| 1934 | */ |
||
| 1935 | public function setIsLimitativeInWEB($IsLimitativeInWEB) |
||
| 1940 | } |
||
| 1941 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..