amount = $amount; } /** * @return Money */ public function getAmount() { return $this->amount; } /** * @param string */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } public function setExpectedUnitsPerYear($expectedUnitsPerYear) { $this->expectedUnitsPerYear = $expectedUnitsPerYear; } public function getExpectedUnitsPerYear() { return $this->expectedUnitsPerYear; } /** * @param CompensationRange */ public function setRange(CompensationRange $range) { $this->range = $range; } /** * @return CompensationRange */ public function getRange() { return $this->range; } /** * @param string */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } /** * @param string */ public function setUnit($unit) { $this->unit = $unit; } /** * @return string */ public function getUnit() { return $this->unit; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CompensationEntry::class, 'Google_Service_CloudTalentSolution_CompensationEntry');