price = $price; } /** * @return Money */ public function getPrice() { return $this->price; } /** * @param string */ public function setRegionCode($regionCode) { $this->regionCode = $regionCode; } /** * @return string */ public function getRegionCode() { return $this->regionCode; } /** * @param Money */ public function setTaxAmount(Money $taxAmount) { $this->taxAmount = $taxAmount; } /** * @return Money */ public function getTaxAmount() { return $this->taxAmount; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConvertedRegionPrice::class, 'Google_Service_AndroidPublisher_ConvertedRegionPrice');