Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfig

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 Human Agent Assist to connect to a conversation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfig

Returns a new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfig.



6523
6524
6525
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6523

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

Instance Attribute Details

#human_agent_suggestion_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig

Detail human agent assistant config. Corresponds to the JSON property humanAgentSuggestionConfig



6511
6512
6513
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6511

def human_agent_suggestion_config
  @human_agent_suggestion_config
end

#message_analysis_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig

Configuration for analyses to run on each conversation message. Corresponds to the JSON property messageAnalysisConfig



6516
6517
6518
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6516

def message_analysis_config
  @message_analysis_config
end

#notification_configGoogle::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig

Defines notification behavior. Corresponds to the JSON property notificationConfig



6521
6522
6523
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6521

def notification_config
  @notification_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6528
6529
6530
6531
6532
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 6528

def update!(**args)
  @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