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.



5828
5829
5830
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5828

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)


5819
5820
5821
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5819

def disable
  @disable
end

#max_rephrase_stepsFixnum

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

Returns:

  • (Fixnum)


5826
5827
5828
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5826

def max_rephrase_steps
  @max_rephrase_steps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5833
5834
5835
5836
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 5833

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