Sin descripción

ExtendedCompensationInfo.php 3.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. /*
  3. * Copyright 2014 Google Inc.
  4. *
  5. * Licensed under the Apache License, Version 2.0 (the "License"); you may not
  6. * use this file except in compliance with the License. You may obtain a copy of
  7. * the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
  13. * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
  14. * License for the specific language governing permissions and limitations under
  15. * the License.
  16. */
  17. class Google_Service_JobService_ExtendedCompensationInfo extends Google_Collection
  18. {
  19. protected $collection_key = 'entries';
  20. protected $annualizedBaseCompensationRangeType = 'Google_Service_JobService_ExtendedCompensationInfoCompensationRange';
  21. protected $annualizedBaseCompensationRangeDataType = '';
  22. public $annualizedBaseCompensationUnspecified;
  23. protected $annualizedTotalCompensationRangeType = 'Google_Service_JobService_ExtendedCompensationInfoCompensationRange';
  24. protected $annualizedTotalCompensationRangeDataType = '';
  25. public $annualizedTotalCompensationUnspecified;
  26. public $currency;
  27. protected $entriesType = 'Google_Service_JobService_ExtendedCompensationInfoCompensationEntry';
  28. protected $entriesDataType = 'array';
  29. /**
  30. * @param Google_Service_JobService_ExtendedCompensationInfoCompensationRange
  31. */
  32. public function setAnnualizedBaseCompensationRange(Google_Service_JobService_ExtendedCompensationInfoCompensationRange $annualizedBaseCompensationRange)
  33. {
  34. $this->annualizedBaseCompensationRange = $annualizedBaseCompensationRange;
  35. }
  36. /**
  37. * @return Google_Service_JobService_ExtendedCompensationInfoCompensationRange
  38. */
  39. public function getAnnualizedBaseCompensationRange()
  40. {
  41. return $this->annualizedBaseCompensationRange;
  42. }
  43. public function setAnnualizedBaseCompensationUnspecified($annualizedBaseCompensationUnspecified)
  44. {
  45. $this->annualizedBaseCompensationUnspecified = $annualizedBaseCompensationUnspecified;
  46. }
  47. public function getAnnualizedBaseCompensationUnspecified()
  48. {
  49. return $this->annualizedBaseCompensationUnspecified;
  50. }
  51. /**
  52. * @param Google_Service_JobService_ExtendedCompensationInfoCompensationRange
  53. */
  54. public function setAnnualizedTotalCompensationRange(Google_Service_JobService_ExtendedCompensationInfoCompensationRange $annualizedTotalCompensationRange)
  55. {
  56. $this->annualizedTotalCompensationRange = $annualizedTotalCompensationRange;
  57. }
  58. /**
  59. * @return Google_Service_JobService_ExtendedCompensationInfoCompensationRange
  60. */
  61. public function getAnnualizedTotalCompensationRange()
  62. {
  63. return $this->annualizedTotalCompensationRange;
  64. }
  65. public function setAnnualizedTotalCompensationUnspecified($annualizedTotalCompensationUnspecified)
  66. {
  67. $this->annualizedTotalCompensationUnspecified = $annualizedTotalCompensationUnspecified;
  68. }
  69. public function getAnnualizedTotalCompensationUnspecified()
  70. {
  71. return $this->annualizedTotalCompensationUnspecified;
  72. }
  73. public function setCurrency($currency)
  74. {
  75. $this->currency = $currency;
  76. }
  77. public function getCurrency()
  78. {
  79. return $this->currency;
  80. }
  81. /**
  82. * @param Google_Service_JobService_ExtendedCompensationInfoCompensationEntry
  83. */
  84. public function setEntries($entries)
  85. {
  86. $this->entries = $entries;
  87. }
  88. /**
  89. * @return Google_Service_JobService_ExtendedCompensationInfoCompensationEntry
  90. */
  91. public function getEntries()
  92. {
  93. return $this->entries;
  94. }
  95. }