Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaConditionQueryTerm

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/discoveryengine_v1alpha/classes.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb,
lib/google/apis/discoveryengine_v1alpha/representations.rb

Overview

Matcher for search request query

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaConditionQueryTerm

Returns a new instance of GoogleCloudDiscoveryengineV1alphaConditionQueryTerm.



4864
4865
4866
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4864

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#full_matchBoolean Also known as: full_match?

Whether the search query needs to exactly match the query term. Corresponds to the JSON property fullMatch

Returns:

  • (Boolean)


4854
4855
4856
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4854

def full_match
  @full_match
end

#valueString

The specific query value to match against Must be lowercase, must be UTF-8. Can have at most 3 space separated terms if full_match is true. Cannot be an empty string. Maximum length of 5000 characters. Corresponds to the JSON property value

Returns:

  • (String)


4862
4863
4864
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4862

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4869
4870
4871
4872
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 4869

def update!(**args)
  @full_match = args[:full_match] if args.key?(:full_match)
  @value = args[:value] if args.key?(:value)
end