Class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v3/classes.rb,
lib/google/apis/dialogflow_v3/representations.rb,
lib/google/apis/dialogflow_v3/representations.rb
Instance Attribute Summary collapse
-
#current_page ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Page
Corresponds to the JSON property
currentPage. -
#diagnostic_info ⇒ Hash<String,Object>
Corresponds to the JSON property
diagnosticInfo. -
#differences ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TestRunDifference>
Corresponds to the JSON property
differences. -
#session_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
sessionParameters. -
#status ⇒ Google::Apis::DialogflowV3::GoogleRpcStatus
Corresponds to the JSON property
status. -
#text_responses ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageText>
Corresponds to the JSON property
textResponses. -
#triggered_intent ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Intent
Corresponds to the JSON property
triggeredIntent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
constructor
A new instance of GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
Returns a new instance of GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput.
10119 10120 10121 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10119 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_page ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Page
Corresponds to the JSON property currentPage
10087 10088 10089 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10087 def current_page @current_page end |
#diagnostic_info ⇒ Hash<String,Object>
Corresponds to the JSON property diagnosticInfo
10092 10093 10094 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10092 def diagnostic_info @diagnostic_info end |
#differences ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TestRunDifference>
Corresponds to the JSON property differences
10097 10098 10099 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10097 def differences @differences end |
#session_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property sessionParameters
10102 10103 10104 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10102 def session_parameters @session_parameters end |
#status ⇒ Google::Apis::DialogflowV3::GoogleRpcStatus
Corresponds to the JSON property status
10107 10108 10109 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10107 def status @status end |
#text_responses ⇒ Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ResponseMessageText>
Corresponds to the JSON property textResponses
10112 10113 10114 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10112 def text_responses @text_responses end |
#triggered_intent ⇒ Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1Intent
Corresponds to the JSON property triggeredIntent
10117 10118 10119 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10117 def triggered_intent @triggered_intent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10124 10125 10126 10127 10128 10129 10130 10131 10132 |
# File 'lib/google/apis/dialogflow_v3/classes.rb', line 10124 def update!(**args) @current_page = args[:current_page] if args.key?(:current_page) @diagnostic_info = args[:diagnostic_info] if args.key?(:diagnostic_info) @differences = args[:differences] if args.key?(:differences) @session_parameters = args[:session_parameters] if args.key?(:session_parameters) @status = args[:status] if args.key?(:status) @text_responses = args[:text_responses] if args.key?(:text_responses) @triggered_intent = args[:triggered_intent] if args.key?(:triggered_intent) end |