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
18class Google_Service_JobService_ExtendedCompensationInfoCompensationEntry extends Google_Model
19{
20  protected $amountType = 'Google_Service_JobService_ExtendedCompensationInfoDecimal';
21  protected $amountDataType = '';
22  public $description;
23  protected $expectedUnitsPerYearType = 'Google_Service_JobService_ExtendedCompensationInfoDecimal';
24  protected $expectedUnitsPerYearDataType = '';
25  protected $rangeType = 'Google_Service_JobService_ExtendedCompensationInfoCompensationRange';
26  protected $rangeDataType = '';
27  public $type;
28  public $unit;
29  public $unspecified;
30
31  /**
32   * @param Google_Service_JobService_ExtendedCompensationInfoDecimal
33   */
34  public function setAmount(Google_Service_JobService_ExtendedCompensationInfoDecimal $amount)
35  {
36    $this->amount = $amount;
37  }
38  /**
39   * @return Google_Service_JobService_ExtendedCompensationInfoDecimal
40   */
41  public function getAmount()
42  {
43    return $this->amount;
44  }
45  public function setDescription($description)
46  {
47    $this->description = $description;
48  }
49  public function getDescription()
50  {
51    return $this->description;
52  }
53  /**
54   * @param Google_Service_JobService_ExtendedCompensationInfoDecimal
55   */
56  public function setExpectedUnitsPerYear(Google_Service_JobService_ExtendedCompensationInfoDecimal $expectedUnitsPerYear)
57  {
58    $this->expectedUnitsPerYear = $expectedUnitsPerYear;
59  }
60  /**
61   * @return Google_Service_JobService_ExtendedCompensationInfoDecimal
62   */
63  public function getExpectedUnitsPerYear()
64  {
65    return $this->expectedUnitsPerYear;
66  }
67  /**
68   * @param Google_Service_JobService_ExtendedCompensationInfoCompensationRange
69   */
70  public function setRange(Google_Service_JobService_ExtendedCompensationInfoCompensationRange $range)
71  {
72    $this->range = $range;
73  }
74  /**
75   * @return Google_Service_JobService_ExtendedCompensationInfoCompensationRange
76   */
77  public function getRange()
78  {
79    return $this->range;
80  }
81  public function setType($type)
82  {
83    $this->type = $type;
84  }
85  public function getType()
86  {
87    return $this->type;
88  }
89  public function setUnit($unit)
90  {
91    $this->unit = $unit;
92  }
93  public function getUnit()
94  {
95    return $this->unit;
96  }
97  public function setUnspecified($unspecified)
98  {
99    $this->unspecified = $unspecified;
100  }
101  public function getUnspecified()
102  {
103    return $this->unspecified;
104  }
105}
106