Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
- 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.
-
#generator ⇒ String
The resource name of the existing created generator.
-
#summarization_model ⇒ String
Default summarization model to be used.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
constructor
A new instance of GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig.
7817 7818 7819 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7817 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
7804 7805 7806 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7804 def conversation_profile @conversation_profile end |
#generator ⇒ String
The resource name of the existing created generator. Format: projects//
locations//generators/
Corresponds to the JSON property generator
7810 7811 7812 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7810 def generator @generator end |
#summarization_model ⇒ String
Default summarization model to be used.
Corresponds to the JSON property summarizationModel
7815 7816 7817 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7815 def summarization_model @summarization_model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7822 7823 7824 7825 7826 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 7822 def update!(**args) @conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile) @generator = args[:generator] if args.key?(:generator) @summarization_model = args[:summarization_model] if args.key?(:summarization_model) end |