Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats
 
 
- 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
Statistics for IngestConversations operation.
Instance Attribute Summary collapse
- 
  
    
      #duplicates_skipped_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #failed_ingest_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #processed_object_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #successful_ingest_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats
Returns a new instance of GoogleCloudContactcenterinsightsV1IngestConversationsMetadataIngestConversationsStats.
      2289 2290 2291  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2289 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#duplicates_skipped_count ⇒ Fixnum
Output only. The number of objects skipped because another conversation with
the same transcript uri had already been ingested.
Corresponds to the JSON property duplicatesSkippedCount
      2270 2271 2272  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2270 def duplicates_skipped_count @duplicates_skipped_count end  | 
  
#failed_ingest_count ⇒ Fixnum
Output only. The number of objects which were unable to be ingested due to
errors. The errors are populated in the partial_errors field.
Corresponds to the JSON property failedIngestCount
      2276 2277 2278  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2276 def failed_ingest_count @failed_ingest_count end  | 
  
#processed_object_count ⇒ Fixnum
Output only. The number of objects processed during the ingest operation.
Corresponds to the JSON property processedObjectCount
      2281 2282 2283  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2281 def processed_object_count @processed_object_count end  | 
  
#successful_ingest_count ⇒ Fixnum
Output only. The number of new conversations added during this ingest
operation.
Corresponds to the JSON property successfulIngestCount
      2287 2288 2289  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2287 def successful_ingest_count @successful_ingest_count end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2294 2295 2296 2297 2298 2299  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 2294 def update!(**args) @duplicates_skipped_count = args[:duplicates_skipped_count] if args.key?(:duplicates_skipped_count) @failed_ingest_count = args[:failed_ingest_count] if args.key?(:failed_ingest_count) @processed_object_count = args[:processed_object_count] if args.key?(:processed_object_count) @successful_ingest_count = args[:successful_ingest_count] if args.key?(:successful_ingest_count) end  |