Class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SetSuggestionFeatureConfigRequest
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2::GoogleCloudDialogflowV2SetSuggestionFeatureConfigRequest
- 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
The request message for ConversationProfiles.SetSuggestionFeature.
Instance Attribute Summary collapse
-
#participant_role ⇒ String
Required.
-
#suggestion_feature_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfig
Config for suggestion features.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2SetSuggestionFeatureConfigRequest
constructor
A new instance of GoogleCloudDialogflowV2SetSuggestionFeatureConfigRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2SetSuggestionFeatureConfigRequest
Returns a new instance of GoogleCloudDialogflowV2SetSuggestionFeatureConfigRequest.
12018 12019 12020 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12018 def initialize(**args) update!(**args) end |
Instance Attribute Details
#participant_role ⇒ String
Required. The participant role to add or update the suggestion feature config.
Only HUMAN_AGENT or END_USER can be used.
Corresponds to the JSON property participantRole
12011 12012 12013 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12011 def participant_role @participant_role end |
#suggestion_feature_config ⇒ Google::Apis::DialogflowV2::GoogleCloudDialogflowV2HumanAgentAssistantConfigSuggestionFeatureConfig
Config for suggestion features.
Corresponds to the JSON property suggestionFeatureConfig
12016 12017 12018 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12016 def suggestion_feature_config @suggestion_feature_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12023 12024 12025 12026 |
# File 'lib/google/apis/dialogflow_v2/classes.rb', line 12023 def update!(**args) @participant_role = args[:participant_role] if args.key?(:participant_role) @suggestion_feature_config = args[:suggestion_feature_config] if args.key?(:suggestion_feature_config) end |