Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfig
- 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 Human Agent Assist to connect to a conversation.
Instance Attribute Summary collapse
-
#end_user_suggestion_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Detail human agent assistant config.
-
#human_agent_suggestion_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Detail human agent assistant config.
-
#message_analysis_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig
Configuration for analyses to run on each conversation message.
-
#notification_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig
Defines notification behavior.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfig
constructor
A new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfig
Returns a new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfig.
8502 8503 8504 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8502 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_user_suggestion_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Detail human agent assistant config.
Corresponds to the JSON property endUserSuggestionConfig
8485 8486 8487 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8485 def end_user_suggestion_config @end_user_suggestion_config end |
#human_agent_suggestion_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Detail human agent assistant config.
Corresponds to the JSON property humanAgentSuggestionConfig
8490 8491 8492 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8490 def human_agent_suggestion_config @human_agent_suggestion_config end |
#message_analysis_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig
Configuration for analyses to run on each conversation message.
Corresponds to the JSON property messageAnalysisConfig
8495 8496 8497 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8495 def @message_analysis_config end |
#notification_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig
Defines notification behavior.
Corresponds to the JSON property notificationConfig
8500 8501 8502 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8500 def notification_config @notification_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8507 8508 8509 8510 8511 8512 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 8507 def update!(**args) @end_user_suggestion_config = args[:end_user_suggestion_config] if args.key?(:end_user_suggestion_config) @human_agent_suggestion_config = args[:human_agent_suggestion_config] if args.key?(:human_agent_suggestion_config) @message_analysis_config = args[:message_analysis_config] if args.key?(:message_analysis_config) @notification_config = args[:notification_config] if args.key?(:notification_config) end |