Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfig

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

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentHandoffConfig

Returns a new instance of GoogleCloudDialogflowV2HumanAgentHandoffConfig.



12961
12962
12963
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12961

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

Instance Attribute Details

#live_person_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigLivePersonConfig

Configuration specific to LivePerson. Corresponds to the JSON property livePersonConfig



12954
12955
12956
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12954

def live_person_config
  @live_person_config
end

#salesforce_live_agent_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentHandoffConfigSalesforceLiveAgentConfig

Configuration specific to Salesforce Live Agent. Corresponds to the JSON property salesforceLiveAgentConfig



12959
12960
12961
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12959

def salesforce_live_agent_config
  @salesforce_live_agent_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12966
12967
12968
12969
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12966

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