Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig
- 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
Overview
Defines the hand off to a live agent, typically on which external agent service provider to connect to a conversation. Currently, this feature is not general available, please contact Google to get access.
Instance Attribute Summary collapse
-
#live_person_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigLivePersonConfig
Configuration specific to LivePerson (https://www.liveperson.com).
-
#salesforce_live_agent_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
Configuration specific to Salesforce Live Agent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig
constructor
A new instance of GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig
Returns a new instance of GoogleCloudDialogflowV2beta1HumanAgentHandoffConfig.
12293 12294 12295 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12293 def initialize(**args) update!(**args) end |
Instance Attribute Details
#live_person_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigLivePersonConfig
Configuration specific to LivePerson (https://www.liveperson.com).
Corresponds to the JSON property livePersonConfig
12286 12287 12288 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12286 def live_person_config @live_person_config end |
#salesforce_live_agent_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
Configuration specific to Salesforce Live Agent.
Corresponds to the JSON property salesforceLiveAgentConfig
12291 12292 12293 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12291 def salesforce_live_agent_config @salesforce_live_agent_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12298 12299 12300 12301 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 12298 def update!(**args) @live_person_config = args[:live_person_config] if args.key?(:live_person_config) @salesforce_live_agent_config = args[:salesforce_live_agent_config] if args.key?(:salesforce_live_agent_config) end |