amount = $amount; } public function getAmount() { return $this->amount; } /** * An ISO 4217, three-letter currency code. (In LITE projection.) * * @param string $currencyCode */ public function setCurrencyCode($currencyCode) { $this->currencyCode = $currencyCode; } /** * @return string */ public function getCurrencyCode() { return $this->currencyCode; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(VolumeSaleInfoRetailPrice::class, 'Google_Service_Books_VolumeSaleInfoRetailPrice');