Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
- 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
-
#disable_high_latency_features_sync_delivery ⇒ Boolean
(also: #disable_high_latency_features_sync_delivery?)
Corresponds to the JSON property
disableHighLatencyFeaturesSyncDelivery. -
#enable_async_tool_call ⇒ Boolean
(also: #enable_async_tool_call?)
Corresponds to the JSON property
enableAsyncToolCall. -
#feature_configs ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfig>
Corresponds to the JSON property
featureConfigs. -
#generators ⇒ Array<String>
Corresponds to the JSON property
generators. -
#group_suggestion_responses ⇒ Boolean
(also: #group_suggestion_responses?)
Corresponds to the JSON property
groupSuggestionResponses. -
#skip_empty_event_based_suggestion ⇒ Boolean
(also: #skip_empty_event_based_suggestion?)
Corresponds to the JSON property
skipEmptyEventBasedSuggestion. -
#use_unredacted_conversation_data ⇒ Boolean
(also: #use_unredacted_conversation_data?)
Corresponds to the JSON property
useUnredactedConversationData.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
constructor
A new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig
Returns a new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig.
10944 10945 10946 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10944 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disable_high_latency_features_sync_delivery ⇒ Boolean Also known as: disable_high_latency_features_sync_delivery?
Corresponds to the JSON property disableHighLatencyFeaturesSyncDelivery
10907 10908 10909 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10907 def disable_high_latency_features_sync_delivery @disable_high_latency_features_sync_delivery end |
#enable_async_tool_call ⇒ Boolean Also known as: enable_async_tool_call?
Corresponds to the JSON property enableAsyncToolCall
10913 10914 10915 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10913 def enable_async_tool_call @enable_async_tool_call end |
#feature_configs ⇒ Array<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfig>
Corresponds to the JSON property featureConfigs
10919 10920 10921 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10919 def feature_configs @feature_configs end |
#generators ⇒ Array<String>
Corresponds to the JSON property generators
10924 10925 10926 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10924 def generators @generators end |
#group_suggestion_responses ⇒ Boolean Also known as: group_suggestion_responses?
Corresponds to the JSON property groupSuggestionResponses
10929 10930 10931 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10929 def group_suggestion_responses @group_suggestion_responses end |
#skip_empty_event_based_suggestion ⇒ Boolean Also known as: skip_empty_event_based_suggestion?
Corresponds to the JSON property skipEmptyEventBasedSuggestion
10935 10936 10937 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10935 def skip_empty_event_based_suggestion @skip_empty_event_based_suggestion end |
#use_unredacted_conversation_data ⇒ Boolean Also known as: use_unredacted_conversation_data?
Corresponds to the JSON property useUnredactedConversationData
10941 10942 10943 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10941 def use_unredacted_conversation_data @use_unredacted_conversation_data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10949 10950 10951 10952 10953 10954 10955 10956 10957 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10949 def update!(**args) @disable_high_latency_features_sync_delivery = args[:disable_high_latency_features_sync_delivery] if args.key?(:disable_high_latency_features_sync_delivery) @enable_async_tool_call = args[:enable_async_tool_call] if args.key?(:enable_async_tool_call) @feature_configs = args[:feature_configs] if args.key?(:feature_configs) @generators = args[:generators] if args.key?(:generators) @group_suggestion_responses = args[:group_suggestion_responses] if args.key?(:group_suggestion_responses) @skip_empty_event_based_suggestion = args[:skip_empty_event_based_suggestion] if args.key?(:skip_empty_event_based_suggestion) @use_unredacted_conversation_data = args[:use_unredacted_conversation_data] if args.key?(:use_unredacted_conversation_data) end |