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
-
#execution_summary ⇒ String
Optional.
-
#parameters ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ActionParameter>
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.
9694 9695 9696 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9694 def initialize(**args) update!(**args) end |
Instance Attribute Details
#execution_summary ⇒ String
Optional. Summary string of the execution result of the child playbook.
Corresponds to the JSON property executionSummary
9687 9688 9689 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9687 def execution_summary @execution_summary end |
#parameters ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ActionParameter>
Optional. A list of output parameters for the invocation.
Corresponds to the JSON property parameters
9692 9693 9694 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9692 def parameters @parameters end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9699 9700 9701 9702 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9699 def update!(**args) @execution_summary = args[:execution_summary] if args.key?(:execution_summary) @parameters = args[:parameters] if args.key?(:parameters) end |