Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v2/classes.rb,
lib/google/apis/dialogflow_v2/representations.rb,
lib/google/apis/dialogflow_v2/representations.rb

Overview

Indicates that the conversation succeeded, i.e., the bot handled the issue that the customer talked to it about. Dialogflow only uses this to determine which conversations should be counted as successful and doesn't process the metadata in this message in any way. Note that Dialogflow also considers conversations that get to the conversation end page as successful even if they don't return ConversationSuccess. You may set this, for example: * In the entry_fulfillment of a Page if entering the page indicates that the conversation succeeded. * In a webhook response when you determine that you handled the customer issue.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess

Returns a new instance of GoogleCloudDialogflowCxV3ResponseMessageConversationSuccess.



2297
2298
2299
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2297

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

Instance Attribute Details

#metadataHash<String,Object>

Custom metadata. Dialogflow doesn't impose any structure on this. Corresponds to the JSON property metadata

Returns:

  • (Hash<String,Object>)


2295
2296
2297
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2295

def 
  @metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2302
2303
2304
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 2302

def update!(**args)
  @metadata = args[:metadata] if args.key?(:metadata)
end