Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsResponse
 
 
- 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 response for a bulk analyze conversations operation.
Instance Attribute Summary collapse
- 
  
    
      #failed_analysis_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Count of failed analyses.
 - 
  
    
      #successful_analysis_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Count of successful analyses.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsResponse
Returns a new instance of GoogleCloudContactcenterinsightsV1BulkAnalyzeConversationsResponse.
      495 496 497  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 495 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#failed_analysis_count ⇒ Fixnum
Count of failed analyses.
Corresponds to the JSON property failedAnalysisCount
      488 489 490  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 488 def failed_analysis_count @failed_analysis_count end  | 
  
#successful_analysis_count ⇒ Fixnum
Count of successful analyses.
Corresponds to the JSON property successfulAnalysisCount
      493 494 495  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 493 def successful_analysis_count @successful_analysis_count end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      500 501 502 503  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 500 def update!(**args) @failed_analysis_count = args[:failed_analysis_count] if args.key?(:failed_analysis_count) @successful_analysis_count = args[:successful_analysis_count] if args.key?(:successful_analysis_count) end  |