Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest
 
 
- 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 analyze conversations in bulk.
Instance Attribute Summary collapse
- 
  
    
      #analysis_percentage  ⇒ Float 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #annotator_selector  ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelector 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Selector of all available annotators and phrase matchers to run.
 - 
  
    
      #filter  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #parent  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1BulkAnalyzeConversationsRequest.
      4329 4330 4331  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4329 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#analysis_percentage ⇒ Float
Required. Percentage of selected conversation to analyze, between [0, 100].
Corresponds to the JSON property analysisPercentage
      4312 4313 4314  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4312 def analysis_percentage @analysis_percentage end  | 
  
#annotator_selector ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelector
Selector of all available annotators and phrase matchers to run.
Corresponds to the JSON property annotatorSelector
      4317 4318 4319  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4317 def annotator_selector @annotator_selector end  | 
  
#filter ⇒ String
Required. Filter used to select the subset of conversations to analyze.
Corresponds to the JSON property filter
      4322 4323 4324  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4322 def filter @filter end  | 
  
#parent ⇒ String
Required. The parent resource to create analyses in.
Corresponds to the JSON property parent
      4327 4328 4329  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4327 def parent @parent end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4334 4335 4336 4337 4338 4339  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4334 def update!(**args) @analysis_percentage = args[:analysis_percentage] if args.key?(:analysis_percentage) @annotator_selector = args[:annotator_selector] if args.key?(:annotator_selector) @filter = args[:filter] if args.key?(:filter) @parent = args[:parent] if args.key?(:parent) end  |