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.



10652
10653
10654
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10652

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>)


10645
10646
10647
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10645

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)


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