Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1MatchIntentRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1MatchIntentRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb
Instance Attribute Summary collapse
-
#persist_parameter_changes ⇒ Boolean
(also: #persist_parameter_changes?)
Corresponds to the JSON property
persistParameterChanges. -
#query_input ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput
Corresponds to the JSON property
queryInput. -
#query_params ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters
Corresponds to the JSON property
queryParams.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1MatchIntentRequest
constructor
A new instance of GoogleCloudDialogflowCxV3beta1MatchIntentRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1MatchIntentRequest
Returns a new instance of GoogleCloudDialogflowCxV3beta1MatchIntentRequest.
9785 9786 9787 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9785 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
9772 9773 9774 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9772 def persist_parameter_changes @persist_parameter_changes end |
#query_input ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryInput
Corresponds to the JSON property queryInput
9778 9779 9780 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9778 def query_input @query_input end |
#query_params ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters
Corresponds to the JSON property queryParams
9783 9784 9785 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9783 def query_params @query_params end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9790 9791 9792 9793 9794 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9790 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 |