Class: Google::Apis::CloudsearchV1::QueryInterpretation
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::QueryInterpretation
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#interpretation_type ⇒ String
Corresponds to the JSON property
interpretationType
. -
#interpreted_query ⇒ String
The interpretation of the query used in search.
-
#reason ⇒ String
The reason for interpretation of the query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ QueryInterpretation
constructor
A new instance of QueryInterpretation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ QueryInterpretation
Returns a new instance of QueryInterpretation.
16513 16514 16515 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16513 def initialize(**args) update!(**args) end |
Instance Attribute Details
#interpretation_type ⇒ String
Corresponds to the JSON property interpretationType
16497 16498 16499 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16497 def interpretation_type @interpretation_type end |
#interpreted_query ⇒ String
The interpretation of the query used in search. For example, queries with
natural language intent like "email from john" will be interpreted as "from:
john source:mail". This field will not be filled when the reason is
NOT_ENOUGH_RESULTS_FOUND_FOR_USER_QUERY.
Corresponds to the JSON property interpretedQuery
16505 16506 16507 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16505 def interpreted_query @interpreted_query end |
#reason ⇒ String
The reason for interpretation of the query. This field will not be UNSPECIFIED
if the interpretation type is not NONE.
Corresponds to the JSON property reason
16511 16512 16513 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16511 def reason @reason end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16518 16519 16520 16521 16522 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 16518 def update!(**args) @interpretation_type = args[:interpretation_type] if args.key?(:interpretation_type) @interpreted_query = args[:interpreted_query] if args.key?(:interpreted_query) @reason = args[:reason] if args.key?(:reason) end |