Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ConversationTurn

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dialogflow_v2/classes.rb,
generated/google/apis/dialogflow_v2/representations.rb,
generated/google/apis/dialogflow_v2/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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationTurn

Returns a new instance of GoogleCloudDialogflowCxV3beta1ConversationTurn.



2417
2418
2419
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2417

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

Instance Attribute Details

#user_inputGoogle::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput

The input from the human user. Corresponds to the JSON property userInput



2410
2411
2412
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2410

def user_input
  @user_input
end

#virtual_agent_outputGoogle::Apis::DialogflowV2::GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput

The output from the virtual agent. Corresponds to the JSON property virtualAgentOutput



2415
2416
2417
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2415

def virtual_agent_output
  @virtual_agent_output
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2422
2423
2424
2425
# File 'generated/google/apis/dialogflow_v2/classes.rb', line 2422

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