Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCompleteQueryResponse

Inherits:
Object
  • Object
show all
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

Response message for CompletionService.CompleteQuery method.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaCompleteQueryResponse

Returns a new instance of GoogleCloudDiscoveryengineV1betaCompleteQueryResponse.



3681
3682
3683
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 3681

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

Instance Attribute Details

#query_suggestionsArray<Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaCompleteQueryResponseQuerySuggestion>

Results of the matched query suggestions. The result list is ordered and the first result is a top suggestion. Corresponds to the JSON property querySuggestions



3671
3672
3673
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 3671

def query_suggestions
  @query_suggestions
end

#tail_match_triggeredBoolean Also known as: tail_match_triggered?

True if the returned suggestions are all tail suggestions. For tail matching to be triggered, include_tail_suggestions in the request must be true and there must be no suggestions that match the full query. Corresponds to the JSON property tailMatchTriggered

Returns:

  • (Boolean)


3678
3679
3680
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 3678

def tail_match_triggered
  @tail_match_triggered
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3686
3687
3688
3689
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 3686

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