Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaGuidedSearchSpec

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

Overview

Defines guided search spec.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaGuidedSearchSpec

Returns a new instance of GoogleCloudDiscoveryengineV1alphaGuidedSearchSpec.



3583
3584
3585
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3583

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

Instance Attribute Details

#enable_refinement_attributesBoolean Also known as: enable_refinement_attributes?

Whether or not to enable and include refinement attributes in gudied search result. Corresponds to the JSON property enableRefinementAttributes

Returns:

  • (Boolean)


3568
3569
3570
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3568

def enable_refinement_attributes
  @enable_refinement_attributes
end

Whether or not to enable and include related questions in search response. Corresponds to the JSON property enableRelatedQuestions

Returns:

  • (Boolean)


3574
3575
3576
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3574

def enable_related_questions
  @enable_related_questions
end

Max number of related questions to be returned. The valid range is [1, 5]. If enable_related_questions is true, the default value is 3. Corresponds to the JSON property maxRelatedQuestions

Returns:

  • (Fixnum)


3581
3582
3583
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3581

def max_related_questions
  @max_related_questions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3588
3589
3590
3591
3592
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 3588

def update!(**args)
  @enable_refinement_attributes = args[:enable_refinement_attributes] if args.key?(:enable_refinement_attributes)
  @enable_related_questions = args[:enable_related_questions] if args.key?(:enable_related_questions)
  @max_related_questions = args[:max_related_questions] if args.key?(:max_related_questions)
end