Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff

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

Overview

Indicates that the conversation should be handed off to a live agent. Dialogflow only uses this to determine which conversations were handed off to a human agent for measurement purposes. What else to do with this signal is up to you and your handoff procedures. You may set this, for example: * In the entry_fulfillment of a Page if entering the page indicates something went extremely wrong in the conversation. * In a webhook response when you determine that the customer issue can only be handled by a human.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff

Returns a new instance of GoogleCloudDialogflowCxV3beta1ResponseMessageLiveAgentHandoff.



5465
5466
5467
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 5465

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

Instance Attribute Details

#metadataHash<String,Object>

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

Returns:

  • (Hash<String,Object>)


5463
5464
5465
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 5463

def 
  @metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5470
5471
5472
# File 'generated/google/apis/dialogflow_v3beta1/classes.rb', line 5470

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