Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteConversationsRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkDeleteConversationsRequest
 
 
- 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
The request to delete conversations in bulk.
Instance Attribute Summary collapse
- 
  
    
      #filter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Filter used to select the subset of conversations to delete.
 - 
  
    
      #force  ⇒ Boolean 
    
    
      (also: #force?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If set to true, all of this conversation's analyses will also be deleted.
 - 
  
    
      #max_delete_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Maximum number of conversations to delete.
 - 
  
    
      #parent  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1alpha1BulkDeleteConversationsRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1alpha1BulkDeleteConversationsRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1BulkDeleteConversationsRequest
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1BulkDeleteConversationsRequest.
      4432 4433 4434  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4432 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#filter ⇒ String
Filter used to select the subset of conversations to delete.
Corresponds to the JSON property filter
      4412 4413 4414  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4412 def filter @filter end  | 
  
#force ⇒ Boolean Also known as: force?
If set to true, all of this conversation's analyses will also be deleted.
Otherwise, the request will only succeed if the conversation has no analyses.
Corresponds to the JSON property force
      4418 4419 4420  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4418 def force @force end  | 
  
#max_delete_count ⇒ Fixnum
Maximum number of conversations to delete.
Corresponds to the JSON property maxDeleteCount
      4424 4425 4426  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4424 def max_delete_count @max_delete_count end  | 
  
#parent ⇒ String
Required. The parent resource to delete conversations from. Format: projects/
project/locations/location
Corresponds to the JSON property parent
      4430 4431 4432  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4430 def parent @parent end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4437 4438 4439 4440 4441 4442  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4437 def update!(**args) @filter = args[:filter] if args.key?(:filter) @force = args[:force] if args.key?(:force) @max_delete_count = args[:max_delete_count] if args.key?(:max_delete_count) @parent = args[:parent] if args.key?(:parent) end  |