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_OSConfig_FixedOrPercent');