name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param string */ public function setPointsValue($pointsValue) { $this->pointsValue = $pointsValue; } /** * @return string */ public function getPointsValue() { return $this->pointsValue; } public function setRatio($ratio) { $this->ratio = $ratio; } public function getRatio() { return $this->ratio; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LoyaltyPoints::class, 'Google_Service_ShoppingContent_LoyaltyPoints');