Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaSearchResponseQueryExpansionInfo

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

Information describing query expansion including whether expansion has occurred.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaSearchResponseQueryExpansionInfo

Returns a new instance of GoogleCloudDiscoveryengineV1betaSearchResponseQueryExpansionInfo.



12172
12173
12174
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12172

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

Instance Attribute Details

#expanded_queryBoolean Also known as: expanded_query?

Bool describing whether query expansion has occurred. Corresponds to the JSON property expandedQuery

Returns:

  • (Boolean)


12163
12164
12165
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12163

def expanded_query
  @expanded_query
end

#pinned_result_countFixnum

Number of pinned results. This field will only be set when expansion happens and SearchRequest.QueryExpansionSpec.pin_unexpanded_results is set to true. Corresponds to the JSON property pinnedResultCount

Returns:

  • (Fixnum)


12170
12171
12172
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12170

def pinned_result_count
  @pinned_result_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12177
12178
12179
12180
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12177

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