Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1CompleteQueryResponseQuerySuggestion

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

Overview

Suggestions as search queries.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1CompleteQueryResponseQuerySuggestion

Returns a new instance of GoogleCloudDiscoveryengineV1CompleteQueryResponseQuerySuggestion.



2401
2402
2403
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2401

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

Instance Attribute Details

#completable_field_pathsArray<String>

The unique document field paths that serve as the source of this suggestion if it was generated from completable fields. This field is only populated for the document-completable model. Corresponds to the JSON property completableFieldPaths

Returns:

  • (Array<String>)


2394
2395
2396
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2394

def completable_field_paths
  @completable_field_paths
end

#suggestionString

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

Returns:

  • (String)


2399
2400
2401
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2399

def suggestion
  @suggestion
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2406
2407
2408
2409
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2406

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