Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfig
- 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
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::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig
Configuration specific to LivePerson.
-
#salesforce_live_agent_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig
Configuration specific to Salesforce Live Agent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentHandoffConfig
constructor
A new instance of GoogleCloudDialogflowV2HumanAgentHandoffConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentHandoffConfig
Returns a new instance of GoogleCloudDialogflowV2HumanAgentHandoffConfig.
11498 11499 11500 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11498 def initialize(**args) update!(**args) end |
Instance Attribute Details
#live_person_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig
Configuration specific to LivePerson.
Corresponds to the JSON property livePersonConfig
11491 11492 11493 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11491 def live_person_config @live_person_config end |
#salesforce_live_agent_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig
Configuration specific to Salesforce Live Agent.
Corresponds to the JSON property salesforceLiveAgentConfig
11496 11497 11498 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11496 def salesforce_live_agent_config @salesforce_live_agent_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11503 11504 11505 11506 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 11503 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 |