endPrice = $endPrice; } /** * @return GoogleTypeMoney */ public function getEndPrice() { return $this->endPrice; } /** * The low end of the price range (inclusive). Price should be at or above * this amount. * * @param GoogleTypeMoney $startPrice */ public function setStartPrice(GoogleTypeMoney $startPrice) { $this->startPrice = $startPrice; } /** * @return GoogleTypeMoney */ public function getStartPrice() { return $this->startPrice; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleMapsPlacesV1PriceRange::class, 'Google_Service_MapsPlaces_GoogleMapsPlacesV1PriceRange');