Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaAnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec

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

Query rephraser specification.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1betaAnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec

Returns a new instance of GoogleCloudDiscoveryengineV1betaAnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec.



4854
4855
4856
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4854

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

Instance Attribute Details

#disableBoolean Also known as: disable?

Disable query rephraser. Corresponds to the JSON property disable

Returns:

  • (Boolean)


4845
4846
4847
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4845

def disable
  @disable
end

#max_rephrase_stepsFixnum

Max rephrase steps. The max number is 10 steps. If not set or set to < 1, it will be set to 1 by default. Corresponds to the JSON property maxRephraseSteps

Returns:

  • (Fixnum)


4852
4853
4854
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4852

def max_rephrase_steps
  @max_rephrase_steps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4859
4860
4861
4862
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4859

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