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.
10652 10653 10654 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10652 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
10645 10646 10647 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10645 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
10650 10651 10652 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10650 def execution_summary @execution_summary end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10657 10658 10659 10660 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10657 def update!(**args) @action_parameters = args[:action_parameters] if args.key?(:action_parameters) @execution_summary = args[:execution_summary] if args.key?(:execution_summary) end |