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
Instance Attribute Summary collapse
-
#end_user_suggestion_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Corresponds to the JSON property
endUserSuggestionConfig. -
#human_agent_suggestion_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Corresponds to the JSON property
humanAgentSuggestionConfig. -
#message_analysis_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig
Corresponds to the JSON property
messageAnalysisConfig. -
#notification_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig
Corresponds to the JSON property
notificationConfig.
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.
10809 10810 10811 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10809 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_user_suggestion_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Corresponds to the JSON property endUserSuggestionConfig
10792 10793 10794 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10792 def end_user_suggestion_config @end_user_suggestion_config end |
#human_agent_suggestion_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Corresponds to the JSON property humanAgentSuggestionConfig
10797 10798 10799 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10797 def human_agent_suggestion_config @human_agent_suggestion_config end |
#message_analysis_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigMessageAnalysisConfig
Corresponds to the JSON property messageAnalysisConfig
10802 10803 10804 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10802 def @message_analysis_config end |
#notification_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2NotificationConfig
Corresponds to the JSON property notificationConfig
10807 10808 10809 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10807 def notification_config @notification_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10814 10815 10816 10817 10818 10819 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10814 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 |