Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookOutput

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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_parametersHash<String,Object>

Optional. A Struct object of output parameters for the action. Corresponds to the JSON property actionParameters

Returns:

  • (Hash<String,Object>)


10845
10846
10847
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10845

def action_parameters
  @action_parameters
end

#execution_summaryString

Optional. Summary string of the execution result of the child playbook. Corresponds to the JSON property executionSummary

Returns:

  • (String)


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