price = $price; } /** * @return Money */ public function getPrice() { return $this->price; } /** * The region code of the region. * * @param string $regionCode */ public function setRegionCode($regionCode) { $this->regionCode = $regionCode; } /** * @return string */ public function getRegionCode() { return $this->regionCode; } /** * The tax amount of the converted price. * * @param Money $taxAmount */ 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');