Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GenerativeInfo
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1GenerativeInfo
- 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
Represents the information of a query if handled by generative agent resources.
Instance Attribute Summary collapse
-
#action_tracing_info ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Example
Example represents a sample execution of the playbook in the conversation.
-
#current_playbooks ⇒ Array<String>
The stack of playbooks that the conversation has currently entered, with the most recent one on the top.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1GenerativeInfo
constructor
A new instance of GoogleCloudDialogflowCxV3beta1GenerativeInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1GenerativeInfo
Returns a new instance of GoogleCloudDialogflowCxV3beta1GenerativeInfo.
7184 7185 7186 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7184 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action_tracing_info ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Example
Example represents a sample execution of the playbook in the conversation. An
example consists of a list of ordered actions performed by end user or
Dialogflow agent according the playbook instructions to fulfill the task.
Corresponds to the JSON property actionTracingInfo
7176 7177 7178 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7176 def action_tracing_info @action_tracing_info end |
#current_playbooks ⇒ Array<String>
The stack of playbooks that the conversation has currently entered, with the
most recent one on the top.
Corresponds to the JSON property currentPlaybooks
7182 7183 7184 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7182 def current_playbooks @current_playbooks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7189 7190 7191 7192 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 7189 def update!(**args) @action_tracing_info = args[:action_tracing_info] if args.key?(:action_tracing_info) @current_playbooks = args[:current_playbooks] if args.key?(:current_playbooks) end |