Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
- 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
Configuration specific to Salesforce Live Agent.
Instance Attribute Summary collapse
-
#button_id ⇒ String
Required.
-
#deployment_id ⇒ String
Required.
-
#endpoint_domain ⇒ String
Required.
-
#organization_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
constructor
A new instance of GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig
Returns a new instance of GoogleCloudDialogflowV2beta1HumanAgentHandoffConfigSalesforceLiveAgentConfig.
10122 10123 10124 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10122 def initialize(**args) update!(**args) end |
Instance Attribute Details
#button_id ⇒ String
Required. Live Agent chat button ID.
Corresponds to the JSON property buttonId
10102 10103 10104 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10102 def @button_id end |
#deployment_id ⇒ String
Required. Live Agent deployment ID.
Corresponds to the JSON property deploymentId
10107 10108 10109 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10107 def deployment_id @deployment_id end |
#endpoint_domain ⇒ String
Required. Domain of the Live Agent endpoint for this agent. You can find the
endpoint URL in the Live Agent settings page. For example if URL has the
form https://d.la4-c2-phx.salesforceliveagent.com/..., you should fill in d.
la4-c2-phx.salesforceliveagent.com.
Corresponds to the JSON property endpointDomain
10115 10116 10117 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10115 def endpoint_domain @endpoint_domain end |
#organization_id ⇒ String
Required. The organization ID of the Salesforce account.
Corresponds to the JSON property organizationId
10120 10121 10122 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10120 def organization_id @organization_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10127 10128 10129 10130 10131 10132 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10127 def update!(**args) @button_id = args[:button_id] if args.key?(:button_id) @deployment_id = args[:deployment_id] if args.key?(:deployment_id) @endpoint_domain = args[:endpoint_domain] if args.key?(:endpoint_domain) @organization_id = args[:organization_id] if args.key?(:organization_id) end |