Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnalysisResult
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnalysisResult
 
 
- 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 result of an analysis.
Instance Attribute Summary collapse
- 
  
    
      #call_analysis_metadata  ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnalysisResultCallAnalysisMetadata 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Call-specific metadata created during analysis.
 - 
  
    
      #end_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The time at which the analysis ended.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1alpha1AnalysisResult 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1alpha1AnalysisResult.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1AnalysisResult
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1AnalysisResult.
      3945 3946 3947  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3945 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#call_analysis_metadata ⇒ Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnalysisResultCallAnalysisMetadata
Call-specific metadata created during analysis.
Corresponds to the JSON property callAnalysisMetadata
      3938 3939 3940  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3938 def @call_analysis_metadata end  | 
  
#end_time ⇒ String
The time at which the analysis ended.
Corresponds to the JSON property endTime
      3943 3944 3945  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3943 def end_time @end_time end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3950 3951 3952 3953  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 3950 def update!(**args) @call_analysis_metadata = args[:call_analysis_metadata] if args.key?(:call_analysis_metadata) @end_time = args[:end_time] if args.key?(:end_time) end  |