cheap = $cheap; } /** * @return bool */ public function getCheap() { return $this->cheap; } /** * @param string */ public function setCurrencyCode($currencyCode) { $this->currencyCode = $currencyCode; } /** * @return string */ public function getCurrencyCode() { return $this->currencyCode; } /** * @param bool */ public function setExpensive($expensive) { $this->expensive = $expensive; } /** * @return bool */ public function getExpensive() { return $this->expensive; } public function setMaxPrice($maxPrice) { $this->maxPrice = $maxPrice; } public function getMaxPrice() { return $this->maxPrice; } public function setMinPrice($minPrice) { $this->minPrice = $minPrice; } public function getMinPrice() { return $this->minPrice; } /** * @param bool */ public function setModeratelyPriced($moderatelyPriced) { $this->moderatelyPriced = $moderatelyPriced; } /** * @return bool */ public function getModeratelyPriced() { return $this->moderatelyPriced; } /** * @param bool */ public function setUnspecified($unspecified) { $this->unspecified = $unspecified; } /** * @return bool */ public function getUnspecified() { return $this->unspecified; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(NlpSemanticParsingLocalPriceConstraint::class, 'Google_Service_Contentwarehouse_NlpSemanticParsingLocalPriceConstraint');