Class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dialogflow_v2beta1/classes.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb,
lib/google/apis/dialogflow_v2beta1/representations.rb
Overview
Metadata for a ConversationProfile.ClearSuggestionFeatureConfig operation.
Instance Attribute Summary collapse
-
#conversation_profile ⇒ String
The resource name of the conversation profile.
-
#create_time ⇒ String
Timestamp whe the request was created.
-
#participant_role ⇒ String
Required.
-
#suggestion_feature_type ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata
constructor
A new instance of GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata
Returns a new instance of GoogleCloudDialogflowV2beta1ClearSuggestionFeatureConfigOperationMetadata.
10301 10302 10303 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10301 def initialize(**args) update!(**args) end |
Instance Attribute Details
#conversation_profile ⇒ String
The resource name of the conversation profile. Format: projects//locations//
conversationProfiles/
Corresponds to the JSON property conversationProfile
10283 10284 10285 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10283 def conversation_profile @conversation_profile end |
#create_time ⇒ String
Timestamp whe the request was created. The time is measured on server side.
Corresponds to the JSON property createTime
10288 10289 10290 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10288 def create_time @create_time end |
#participant_role ⇒ String
Required. The participant role to remove the suggestion feature config. Only
HUMAN_AGENT or END_USER can be used.
Corresponds to the JSON property participantRole
10294 10295 10296 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10294 def participant_role @participant_role end |
#suggestion_feature_type ⇒ String
Required. The type of the suggestion feature to remove.
Corresponds to the JSON property suggestionFeatureType
10299 10300 10301 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10299 def suggestion_feature_type @suggestion_feature_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10306 10307 10308 10309 10310 10311 |
# File 'lib/google/apis/dialogflow_v2beta1/classes.rb', line 10306 def update!(**args) @conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile) @create_time = args[:create_time] if args.key?(:create_time) @participant_role = args[:participant_role] if args.key?(:participant_role) @suggestion_feature_type = args[:suggestion_feature_type] if args.key?(:suggestion_feature_type) end |