Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig

Returns a new instance of GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig.



4035
4036
4037
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4035

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#conversation_profileString

Resource name of the Dialogflow conversation profile. Format: projects/ project/locations/location/conversationProfiles/conversation_profile Corresponds to the JSON property conversationProfile

Returns:

  • (String)


4028
4029
4030
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4028

def conversation_profile
  @conversation_profile
end

#summarization_modelString

Default summarization model to be used. Corresponds to the JSON property summarizationModel

Returns:

  • (String)


4033
4034
4035
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4033

def summarization_model
  @summarization_model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4040
4041
4042
4043
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 4040

def update!(**args)
  @conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile)
  @summarization_model = args[:summarization_model] if args.key?(:summarization_model)
end