calculated = $calculated; } /** * @return int */ public function getCalculated() { return $this->calculated; } /** * @param int */ public function setFixed($fixed) { $this->fixed = $fixed; } /** * @return int */ public function getFixed() { return $this->fixed; } /** * @param int */ public function setPercent($percent) { $this->percent = $percent; } /** * @return int */ public function getPercent() { return $this->percent; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(FixedOrPercent::class, 'Google_Service_Compute_FixedOrPercent');