Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig
 
 
- 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
Configuration for summarization.
Instance Attribute Summary collapse
- 
  
    
      #conversation_profile  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Resource name of the Dialogflow conversation profile.
 - 
  
    
      #summarization_model  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Default summarization model to be used.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig.
      288 289 290  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 288 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#conversation_profile ⇒ String
Resource name of the Dialogflow conversation profile. Format: projects/
project/locations/location/conversationProfiles/conversation_profile
Corresponds to the JSON property conversationProfile
      281 282 283  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 281 def conversation_profile @conversation_profile end  | 
  
#summarization_model ⇒ String
Default summarization model to be used.
Corresponds to the JSON property summarizationModel
      286 287 288  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 286 def summarization_model @summarization_model end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      293 294 295 296  | 
    
      # File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 293 def update!(**args) @conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile) @summarization_model = args[:summarization_model] if args.key?(:summarization_model) end  |