Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3MatchIntentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3MatchIntentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#persist_parameter_changes ⇒ Boolean
(also: #persist_parameter_changes?)
Corresponds to the JSON property
persistParameterChanges. -
#query_input ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryInput
Corresponds to the JSON property
queryInput. -
#query_params ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters
Corresponds to the JSON property
queryParams.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3MatchIntentRequest
constructor
A new instance of GoogleCloudDialogflowCxV3MatchIntentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3MatchIntentRequest
Returns a new instance of GoogleCloudDialogflowCxV3MatchIntentRequest.
5409 5410 5411 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5409 def initialize(**args) update!(**args) end |
Instance Attribute Details
#persist_parameter_changes ⇒ Boolean Also known as: persist_parameter_changes?
Corresponds to the JSON property persistParameterChanges
5396 5397 5398 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5396 def persist_parameter_changes @persist_parameter_changes end |
#query_input ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryInput
Corresponds to the JSON property queryInput
5402 5403 5404 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5402 def query_input @query_input end |
#query_params ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters
Corresponds to the JSON property queryParams
5407 5408 5409 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5407 def query_params @query_params end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5414 5415 5416 5417 5418 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 5414 def update!(**args) @persist_parameter_changes = args[:persist_parameter_changes] if args.key?(:persist_parameter_changes) @query_input = args[:query_input] if args.key?(:query_input) @query_params = args[:query_params] if args.key?(:query_params) end |