fullMatch = $fullMatch; } /** * @return bool */ public function getFullMatch() { return $this->fullMatch; } /** * The value of the term to match on. Value cannot be empty. Value can have at * most 3 terms if specified as a partial match. Each space separated string * is considered as one term. For example, "a b c" is 3 terms and allowed, but * " a b c d" is 4 terms and not allowed for a partial match. * * @param string $value */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudRetailV2ConditionQueryTerm::class, 'Google_Service_CloudRetail_GoogleCloudRetailV2ConditionQueryTerm');