Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ConversationTurn
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ConversationTurn
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
One interaction between a human and virtual agent. The human provides some input and the virtual agent provides a response.
Instance Attribute Summary collapse
-
#user_input ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput
The input from the human user.
-
#virtual_agent_output ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
The output from the virtual agent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationTurn
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ConversationTurn.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationTurn
Returns a new instance of GoogleCloudDialogflowCxV3beta1ConversationTurn.
3255 3256 3257 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3255 def initialize(**args) update!(**args) end |
Instance Attribute Details
#user_input ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput
The input from the human user.
Corresponds to the JSON property userInput
3248 3249 3250 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3248 def user_input @user_input end |
#virtual_agent_output ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
The output from the virtual agent.
Corresponds to the JSON property virtualAgentOutput
3253 3254 3255 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3253 def virtual_agent_output @virtual_agent_output end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3260 3261 3262 3263 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 3260 def update!(**args) @user_input = args[:user_input] if args.key?(:user_input) @virtual_agent_output = args[:virtual_agent_output] if args.key?(:virtual_agent_output) end |