Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
Query rephraser specification.
Instance Attribute Summary collapse
-
#disable ⇒ Boolean
(also: #disable?)
Disable query rephraser.
-
#max_rephrase_steps ⇒ Fixnum
Max rephrase steps.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec
constructor
A new instance of GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec
Returns a new instance of GoogleCloudDiscoveryengineV1AnswerQueryRequestQueryUnderstandingSpecQueryRephraserSpec.
1210 1211 1212 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1210 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disable ⇒ Boolean Also known as: disable?
Disable query rephraser.
Corresponds to the JSON property disable
1201 1202 1203 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1201 def disable @disable end |
#max_rephrase_steps ⇒ Fixnum
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
1208 1209 1210 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1208 def max_rephrase_steps @max_rephrase_steps end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1215 1216 1217 1218 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1215 def update!(**args) @disable = args[:disable] if args.key?(:disable) @max_rephrase_steps = args[:max_rephrase_steps] if args.key?(:max_rephrase_steps) end |