Class: Google::Apis::RetailV2::GoogleCloudRetailV2CompleteQueryResponseCompletionResult

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

Overview

Resource that represents completion results.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudRetailV2CompleteQueryResponseCompletionResult

Returns a new instance of GoogleCloudRetailV2CompleteQueryResponseCompletionResult.



607
608
609
# File 'lib/google/apis/retail_v2/classes.rb', line 607

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

Instance Attribute Details

#attributesHash<String,Google::Apis::RetailV2::GoogleCloudRetailV2CustomAttribute>

Additional custom attributes ingested through BigQuery. Corresponds to the JSON property attributes



600
601
602
# File 'lib/google/apis/retail_v2/classes.rb', line 600

def attributes
  @attributes
end

#suggestionString

The suggestion for the query. Corresponds to the JSON property suggestion

Returns:

  • (String)


605
606
607
# File 'lib/google/apis/retail_v2/classes.rb', line 605

def suggestion
  @suggestion
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



612
613
614
615
# File 'lib/google/apis/retail_v2/classes.rb', line 612

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