Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig
- 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 Human Agent Assistant to connect to a conversation.
Instance Attribute Summary collapse
-
#end_user_suggestion_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
Detail human agent assistant config.
-
#human_agent_suggestion_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
Detail human agent assistant config.
-
#message_analysis_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig
Configuration for analyses to run on each conversation message.
-
#notification_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1NotificationConfig
Defines notification behavior.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig
constructor
A new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig
Returns a new instance of GoogleCloudDialogflowV2beta1HumanAgentAssistantConfig.
13103 13104 13105 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13103 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_user_suggestion_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
Detail human agent assistant config.
Corresponds to the JSON property endUserSuggestionConfig
13086 13087 13088 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13086 def end_user_suggestion_config @end_user_suggestion_config end |
#human_agent_suggestion_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionConfig
Detail human agent assistant config.
Corresponds to the JSON property humanAgentSuggestionConfig
13091 13092 13093 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13091 def human_agent_suggestion_config @human_agent_suggestion_config end |
#message_analysis_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigMessageAnalysisConfig
Configuration for analyses to run on each conversation message.
Corresponds to the JSON property messageAnalysisConfig
13096 13097 13098 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13096 def @message_analysis_config end |
#notification_config ⇒ Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1NotificationConfig
Defines notification behavior.
Corresponds to the JSON property notificationConfig
13101 13102 13103 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13101 def notification_config @notification_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
13108 13109 13110 13111 13112 13113 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 13108 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 |