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