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.



10624
10625
10626
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10624

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


10617
10618
10619
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10617

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)


10622
10623
10624
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10622

def execution_summary
  @execution_summary
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10629
10630
10631
10632
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 10629

def update!(**args)
  @action_parameters = args[:action_parameters] if args.key?(:action_parameters)
  @execution_summary = args[:execution_summary] if args.key?(:execution_summary)
end