Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig
- 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) ⇒ GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig
constructor
A new instance of GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig
Returns a new instance of GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig.
16725 16726 16727 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16725 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
16712 16713 16714 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16712 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
16718 16719 16720 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16718 def generator @generator end |
#summarization_model ⇒ String
Default summarization model to be used.
Corresponds to the JSON property summarizationModel
16723 16724 16725 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16723 def summarization_model @summarization_model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16730 16731 16732 16733 16734 |
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 16730 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 |