amount = $amount; } /** * @return string */ public function getAmount() { return $this->amount; } /** * @param string */ public function setCurrency($currency) { $this->currency = $currency; } /** * @return string */ public function getCurrency() { return $this->currency; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Price::class, 'Google_Service_ManufacturerCenter_Price');