Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput
- 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
Instance Attribute Summary collapse
-
#current_page ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Page
Corresponds to the JSON property
currentPage. -
#diagnostic_info ⇒ Hash<String,Object>
Corresponds to the JSON property
diagnosticInfo. -
#differences ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestRunDifference>
Corresponds to the JSON property
differences. -
#session_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property
sessionParameters. -
#status ⇒ Google::Apis::DialogflowV2beta1::GoogleRpcStatus
Corresponds to the JSON property
status. -
#text_responses ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageText>
Corresponds to the JSON property
textResponses. -
#triggered_intent ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Intent
Corresponds to the JSON property
triggeredIntent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput
constructor
A new instance of GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput
Returns a new instance of GoogleCloudDialogflowCxV3ConversationTurnVirtualAgentOutput.
426 427 428 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 426 def initialize(**args) update!(**args) end |
Instance Attribute Details
#current_page ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Page
Corresponds to the JSON property currentPage
394 395 396 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 394 def current_page @current_page end |
#diagnostic_info ⇒ Hash<String,Object>
Corresponds to the JSON property diagnosticInfo
399 400 401 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 399 def diagnostic_info @diagnostic_info end |
#differences ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3TestRunDifference>
Corresponds to the JSON property differences
404 405 406 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 404 def differences @differences end |
#session_parameters ⇒ Hash<String,Object>
Corresponds to the JSON property sessionParameters
409 410 411 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 409 def session_parameters @session_parameters end |
#status ⇒ Google::Apis::DialogflowV2beta1::GoogleRpcStatus
Corresponds to the JSON property status
414 415 416 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 414 def status @status end |
#text_responses ⇒ Array<Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3ResponseMessageText>
Corresponds to the JSON property textResponses
419 420 421 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 419 def text_responses @text_responses end |
#triggered_intent ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowCxV3Intent
Corresponds to the JSON property triggeredIntent
424 425 426 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 424 def triggered_intent @triggered_intent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
431 432 433 434 435 436 437 438 439 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 431 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 |