Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ConversationTurnVirtualAgentOutput
- 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
Instance Attribute Summary collapse
-
#current_page ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Page
Corresponds to the JSON property
currentPage. -
#diagnostic_info ⇒ Hash<String,Object>
Corresponds to the JSON property
diagnosticInfo. -
#differences ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TestRunDifference>
Corresponds to the JSON property
differences. -
#session_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
sessionParameters. -
#status ⇒ Google::Apis::DialogflowV3beta1::GoogleRpcStatus
Corresponds to the JSON property
status. -
#text_responses ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText>
Corresponds to the JSON property
textResponses. -
#triggered_intent ⇒ Google::Apis::DialogflowV3beta1::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.
5321 5322 5323 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5321 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_page ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Page
Corresponds to the JSON property currentPage
5289 5290 5291 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5289 def current_page @current_page end |
#diagnostic_info ⇒ Hash<String,Object>
Corresponds to the JSON property diagnosticInfo
5294 5295 5296 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5294 def diagnostic_info @diagnostic_info end |
#differences ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1TestRunDifference>
Corresponds to the JSON property differences
5299 5300 5301 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5299 def differences @differences end |
#session_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property sessionParameters
5304 5305 5306 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5304 def session_parameters @session_parameters end |
#status ⇒ Google::Apis::DialogflowV3beta1::GoogleRpcStatus
Corresponds to the JSON property status
5309 5310 5311 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5309 def status @status end |
#text_responses ⇒ Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageText>
Corresponds to the JSON property textResponses
5314 5315 5316 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5314 def text_responses @text_responses end |
#triggered_intent ⇒ Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Intent
Corresponds to the JSON property triggeredIntent
5319 5320 5321 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5319 def triggered_intent @triggered_intent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5326 5327 5328 5329 5330 5331 5332 5333 5334 |
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5326 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 |