Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig

Returns a new instance of GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionConfig.



10962
10963
10964
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10962

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

Instance Attribute Details

#disable_high_latency_features_sync_deliveryBoolean Also known as: disable_high_latency_features_sync_delivery?

Corresponds to the JSON property disableHighLatencyFeaturesSyncDelivery

Returns:

  • (Boolean)


10925
10926
10927
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10925

def disable_high_latency_features_sync_delivery
  @disable_high_latency_features_sync_delivery
end

#enable_async_tool_callBoolean Also known as: enable_async_tool_call?

Corresponds to the JSON property enableAsyncToolCall

Returns:

  • (Boolean)


10931
10932
10933
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10931

def enable_async_tool_call
  @enable_async_tool_call
end

#feature_configsArray<Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfig>

Corresponds to the JSON property featureConfigs



10937
10938
10939
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10937

def feature_configs
  @feature_configs
end

#generatorsArray<String>

Corresponds to the JSON property generators

Returns:

  • (Array<String>)


10942
10943
10944
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10942

def generators
  @generators
end

#group_suggestion_responsesBoolean Also known as: group_suggestion_responses?

Corresponds to the JSON property groupSuggestionResponses

Returns:

  • (Boolean)


10947
10948
10949
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10947

def group_suggestion_responses
  @group_suggestion_responses
end

#skip_empty_event_based_suggestionBoolean Also known as: skip_empty_event_based_suggestion?

Corresponds to the JSON property skipEmptyEventBasedSuggestion

Returns:

  • (Boolean)


10953
10954
10955
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10953

def skip_empty_event_based_suggestion
  @skip_empty_event_based_suggestion
end

#use_unredacted_conversation_dataBoolean Also known as: use_unredacted_conversation_data?

Corresponds to the JSON property useUnredactedConversationData

Returns:

  • (Boolean)


10959
10960
10961
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10959

def use_unredacted_conversation_data
  @use_unredacted_conversation_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10967
10968
10969
10970
10971
10972
10973
10974
10975
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 10967

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