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.



9694
9695
9696
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9694

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#execution_summaryString

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

Returns:

  • (String)


9687
9688
9689
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 9687

def execution_summary
  @execution_summary
end

#parametersArray<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