Class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig

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) ⇒ GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig

Returns a new instance of GoogleCloudContactcenterinsightsV1mainAnnotatorSelectorSummarizationConfig.



18808
18809
18810
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18808

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)


18795
18796
18797
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18795

def conversation_profile
  @conversation_profile
end

#generatorString

The resource name of the existing created generator. Format: projects// locations//generators/ Corresponds to the JSON property generator

Returns:

  • (String)


18801
18802
18803
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18801

def generator
  @generator
end

#summarization_modelString

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

Returns:

  • (String)


18806
18807
18808
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18806

def summarization_model
  @summarization_model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



18813
18814
18815
18816
18817
# File 'lib/google/apis/contactcenterinsights_v1/classes.rb', line 18813

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