Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaConditionQueryTerm
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaConditionQueryTerm
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
Matcher for search request query
Instance Attribute Summary collapse
-
#full_match ⇒ Boolean
(also: #full_match?)
Whether the search query needs to exactly match the query term.
-
#value ⇒ String
The specific query value to match against Must be lowercase, must be UTF-8.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaConditionQueryTerm
constructor
A new instance of GoogleCloudDiscoveryengineV1betaConditionQueryTerm.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaConditionQueryTerm
Returns a new instance of GoogleCloudDiscoveryengineV1betaConditionQueryTerm.
7477 7478 7479 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 7477 def initialize(**args) update!(**args) end |
Instance Attribute Details
#full_match ⇒ Boolean Also known as: full_match?
Whether the search query needs to exactly match the query term.
Corresponds to the JSON property fullMatch
7467 7468 7469 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 7467 def full_match @full_match end |
#value ⇒ String
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
7475 7476 7477 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 7475 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7482 7483 7484 7485 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 7482 def update!(**args) @full_match = args[:full_match] if args.key?(:full_match) @value = args[:value] if args.key?(:value) end |