Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/contactcenterinsights_v1/classes.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb,
lib/google/apis/contactcenterinsights_v1/representations.rb
Overview
Request for the BulkDeleteFeedbackLabels endpoint.
Instance Attribute Summary collapse
-
#filter ⇒ String
Optional.
-
#parent ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1BulkDeleteFeedbackLabelsRequest.
10283 10284 10285 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 10283 def initialize(**args) update!(**args) end |
Instance Attribute Details
#filter ⇒ String
Optional. A filter to reduce results to a specific subset. Supports
disjunctions (OR) and conjunctions (AND). Supported fields: * issue_model_id
qa_question_id*qa_scorecard_id*min_create_time*max_create_timemin_update_time*max_update_time*feedback_label_type: QUALITY_AI, TOPIC_MODELING Corresponds to the JSON propertyfilter
10276 10277 10278 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 10276 def filter @filter end |
#parent ⇒ String
Required. The parent resource for new feedback labels.
Corresponds to the JSON property parent
10281 10282 10283 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 10281 def parent @parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10288 10289 10290 10291 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 10288 def update!(**args) @filter = args[:filter] if args.key?(:filter) @parent = args[:parent] if args.key?(:parent) end |