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.
-
#state ⇒ String
End state of the playbook.
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.
11953 11954 11955 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11953 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
11941 11942 11943 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11941 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
11946 11947 11948 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11946 def execution_summary @execution_summary end |
#state ⇒ String
End state of the playbook.
Corresponds to the JSON property state
11951 11952 11953 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11951 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11958 11959 11960 11961 11962 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 11958 def update!(**args) @action_parameters = args[:action_parameters] if args.key?(:action_parameters) @execution_summary = args[:execution_summary] if args.key?(:execution_summary) @state = args[:state] if args.key?(:state) end |