Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookOutput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookOutput
- 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
Overview
Output of the playbook.
Instance Attribute Summary collapse
-
#action_parameters ⇒ Hash<String,Object>
Optional.
-
#execution_summary ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1PlaybookOutput
constructor
A new instance of GoogleCloudDialogflowCxV3beta1PlaybookOutput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1PlaybookOutput
Returns a new instance of GoogleCloudDialogflowCxV3beta1PlaybookOutput.
10852 10853 10854 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10852 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action_parameters ⇒ Hash<String,Object>
Optional. A Struct object of output parameters for the action.
Corresponds to the JSON property actionParameters
10845 10846 10847 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10845 def action_parameters @action_parameters end |
#execution_summary ⇒ String
Optional. Summary string of the execution result of the child playbook.
Corresponds to the JSON property executionSummary
10850 10851 10852 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10850 def execution_summary @execution_summary end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10857 10858 10859 10860 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10857 def update!(**args) @action_parameters = args[:action_parameters] if args.key?(:action_parameters) @execution_summary = args[:execution_summary] if args.key?(:execution_summary) end |