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.



6113
6114
6115
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 6113

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)


6104
6105
6106
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 6104

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)


6111
6112
6113
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 6111

def max_rephrase_steps
  @max_rephrase_steps
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6118
6119
6120
6121
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 6118

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