google-apis-contactcenterinsights_v1 0.26.0 → 0.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2659afd817f82efabc5fee2ff562442cdbba4b391eb91d7307e37881e904d7d6
|
4
|
+
data.tar.gz: ac6980ddd57f2b89ed41900b872301ed2862c51e368a36ebd08a0abbb6da85d4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b60979a4f4f8038324073729e81874a118687cfff540a8e6c11b240c2d3e1596183ffb47fc1f2fb04e96cdf92dc4ac10752ba4016698067039c7edbe25bfbe62
|
7
|
+
data.tar.gz: 5ec1ca1656d51666d32c84d123900b98e4ef2c500be869a6388fcc3d7af2039bc5ac83fcdd2f94aec52c9b65c5bce0beebaee7cba99f15fc94d6d2080940dda2
|
data/CHANGELOG.md
CHANGED
@@ -233,6 +233,17 @@ module Google
|
|
233
233
|
attr_accessor :run_silence_annotator
|
234
234
|
alias_method :run_silence_annotator?, :run_silence_annotator
|
235
235
|
|
236
|
+
# Whether to run the summarization annotator.
|
237
|
+
# Corresponds to the JSON property `runSummarizationAnnotator`
|
238
|
+
# @return [Boolean]
|
239
|
+
attr_accessor :run_summarization_annotator
|
240
|
+
alias_method :run_summarization_annotator?, :run_summarization_annotator
|
241
|
+
|
242
|
+
# Configuration for summarization.
|
243
|
+
# Corresponds to the JSON property `summarizationConfig`
|
244
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig]
|
245
|
+
attr_accessor :summarization_config
|
246
|
+
|
236
247
|
def initialize(**args)
|
237
248
|
update!(**args)
|
238
249
|
end
|
@@ -248,6 +259,34 @@ module Google
|
|
248
259
|
@run_phrase_matcher_annotator = args[:run_phrase_matcher_annotator] if args.key?(:run_phrase_matcher_annotator)
|
249
260
|
@run_sentiment_annotator = args[:run_sentiment_annotator] if args.key?(:run_sentiment_annotator)
|
250
261
|
@run_silence_annotator = args[:run_silence_annotator] if args.key?(:run_silence_annotator)
|
262
|
+
@run_summarization_annotator = args[:run_summarization_annotator] if args.key?(:run_summarization_annotator)
|
263
|
+
@summarization_config = args[:summarization_config] if args.key?(:summarization_config)
|
264
|
+
end
|
265
|
+
end
|
266
|
+
|
267
|
+
# Configuration for summarization.
|
268
|
+
class GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig
|
269
|
+
include Google::Apis::Core::Hashable
|
270
|
+
|
271
|
+
# Resource name of the Dialogflow conversation profile. Format: projects/`
|
272
|
+
# project`/locations/`location`/conversationProfiles/`conversation_profile`
|
273
|
+
# Corresponds to the JSON property `conversationProfile`
|
274
|
+
# @return [String]
|
275
|
+
attr_accessor :conversation_profile
|
276
|
+
|
277
|
+
# Default summarization model to be used.
|
278
|
+
# Corresponds to the JSON property `summarizationModel`
|
279
|
+
# @return [String]
|
280
|
+
attr_accessor :summarization_model
|
281
|
+
|
282
|
+
def initialize(**args)
|
283
|
+
update!(**args)
|
284
|
+
end
|
285
|
+
|
286
|
+
# Update properties of this object
|
287
|
+
def update!(**args)
|
288
|
+
@conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile)
|
289
|
+
@summarization_model = args[:summarization_model] if args.key?(:summarization_model)
|
251
290
|
end
|
252
291
|
end
|
253
292
|
|
@@ -732,6 +771,11 @@ module Google
|
|
732
771
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Analysis]
|
733
772
|
attr_accessor :latest_analysis
|
734
773
|
|
774
|
+
# Conversation summarization suggestion data.
|
775
|
+
# Corresponds to the JSON property `latestSummary`
|
776
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData]
|
777
|
+
attr_accessor :latest_summary
|
778
|
+
|
735
779
|
# Immutable. The conversation medium, if unspecified will default to PHONE_CALL.
|
736
780
|
# Corresponds to the JSON property `medium`
|
737
781
|
# @return [String]
|
@@ -796,6 +840,7 @@ module Google
|
|
796
840
|
@labels = args[:labels] if args.key?(:labels)
|
797
841
|
@language_code = args[:language_code] if args.key?(:language_code)
|
798
842
|
@latest_analysis = args[:latest_analysis] if args.key?(:latest_analysis)
|
843
|
+
@latest_summary = args[:latest_summary] if args.key?(:latest_summary)
|
799
844
|
@medium = args[:medium] if args.key?(:medium)
|
800
845
|
@name = args[:name] if args.key?(:name)
|
801
846
|
@obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
|
@@ -929,6 +974,60 @@ module Google
|
|
929
974
|
end
|
930
975
|
end
|
931
976
|
|
977
|
+
# Conversation summarization suggestion data.
|
978
|
+
class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
|
979
|
+
include Google::Apis::Core::Hashable
|
980
|
+
|
981
|
+
# The name of the answer record. Format: projects/`project`/locations/`location`/
|
982
|
+
# answerRecords/`answer_record`
|
983
|
+
# Corresponds to the JSON property `answerRecord`
|
984
|
+
# @return [String]
|
985
|
+
attr_accessor :answer_record
|
986
|
+
|
987
|
+
# The confidence score of the summarization.
|
988
|
+
# Corresponds to the JSON property `confidence`
|
989
|
+
# @return [Float]
|
990
|
+
attr_accessor :confidence
|
991
|
+
|
992
|
+
# The name of the model that generates this summary. Format: projects/`project`/
|
993
|
+
# locations/`location`/conversationModels/`conversation_model`
|
994
|
+
# Corresponds to the JSON property `conversationModel`
|
995
|
+
# @return [String]
|
996
|
+
attr_accessor :conversation_model
|
997
|
+
|
998
|
+
# A map that contains metadata about the summarization and the document from
|
999
|
+
# which it originates.
|
1000
|
+
# Corresponds to the JSON property `metadata`
|
1001
|
+
# @return [Hash<String,String>]
|
1002
|
+
attr_accessor :metadata
|
1003
|
+
|
1004
|
+
# The summarization content that is concatenated into one string.
|
1005
|
+
# Corresponds to the JSON property `text`
|
1006
|
+
# @return [String]
|
1007
|
+
attr_accessor :text
|
1008
|
+
|
1009
|
+
# The summarization content that is divided into sections. The key is the
|
1010
|
+
# section's name and the value is the section's content. There is no specific
|
1011
|
+
# format for the key or value.
|
1012
|
+
# Corresponds to the JSON property `textSections`
|
1013
|
+
# @return [Hash<String,String>]
|
1014
|
+
attr_accessor :text_sections
|
1015
|
+
|
1016
|
+
def initialize(**args)
|
1017
|
+
update!(**args)
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
# Update properties of this object
|
1021
|
+
def update!(**args)
|
1022
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
1023
|
+
@confidence = args[:confidence] if args.key?(:confidence)
|
1024
|
+
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
1025
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
1026
|
+
@text = args[:text] if args.key?(:text)
|
1027
|
+
@text_sections = args[:text_sections] if args.key?(:text_sections)
|
1028
|
+
end
|
1029
|
+
end
|
1030
|
+
|
932
1031
|
# A message representing the transcript of a conversation.
|
933
1032
|
class GoogleCloudContactcenterinsightsV1ConversationTranscript
|
934
1033
|
include Google::Apis::Core::Hashable
|
@@ -2608,6 +2707,11 @@ module Google
|
|
2608
2707
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ArticleSuggestionData]
|
2609
2708
|
attr_accessor :article_suggestion
|
2610
2709
|
|
2710
|
+
# Conversation summarization suggestion data.
|
2711
|
+
# Corresponds to the JSON property `conversationSummarizationSuggestion`
|
2712
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData]
|
2713
|
+
attr_accessor :conversation_summarization_suggestion
|
2714
|
+
|
2611
2715
|
# The time at which this annotation was created.
|
2612
2716
|
# Corresponds to the JSON property `createTime`
|
2613
2717
|
# @return [String]
|
@@ -2652,6 +2756,7 @@ module Google
|
|
2652
2756
|
@annotation_id = args[:annotation_id] if args.key?(:annotation_id)
|
2653
2757
|
@answer_feedback = args[:answer_feedback] if args.key?(:answer_feedback)
|
2654
2758
|
@article_suggestion = args[:article_suggestion] if args.key?(:article_suggestion)
|
2759
|
+
@conversation_summarization_suggestion = args[:conversation_summarization_suggestion] if args.key?(:conversation_summarization_suggestion)
|
2655
2760
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2656
2761
|
@dialogflow_interaction = args[:dialogflow_interaction] if args.key?(:dialogflow_interaction)
|
2657
2762
|
@end_boundary = args[:end_boundary] if args.key?(:end_boundary)
|
@@ -3293,6 +3398,17 @@ module Google
|
|
3293
3398
|
attr_accessor :run_silence_annotator
|
3294
3399
|
alias_method :run_silence_annotator?, :run_silence_annotator
|
3295
3400
|
|
3401
|
+
# Whether to run the summarization annotator.
|
3402
|
+
# Corresponds to the JSON property `runSummarizationAnnotator`
|
3403
|
+
# @return [Boolean]
|
3404
|
+
attr_accessor :run_summarization_annotator
|
3405
|
+
alias_method :run_summarization_annotator?, :run_summarization_annotator
|
3406
|
+
|
3407
|
+
# Configuration for summarization.
|
3408
|
+
# Corresponds to the JSON property `summarizationConfig`
|
3409
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig]
|
3410
|
+
attr_accessor :summarization_config
|
3411
|
+
|
3296
3412
|
def initialize(**args)
|
3297
3413
|
update!(**args)
|
3298
3414
|
end
|
@@ -3308,6 +3424,34 @@ module Google
|
|
3308
3424
|
@run_phrase_matcher_annotator = args[:run_phrase_matcher_annotator] if args.key?(:run_phrase_matcher_annotator)
|
3309
3425
|
@run_sentiment_annotator = args[:run_sentiment_annotator] if args.key?(:run_sentiment_annotator)
|
3310
3426
|
@run_silence_annotator = args[:run_silence_annotator] if args.key?(:run_silence_annotator)
|
3427
|
+
@run_summarization_annotator = args[:run_summarization_annotator] if args.key?(:run_summarization_annotator)
|
3428
|
+
@summarization_config = args[:summarization_config] if args.key?(:summarization_config)
|
3429
|
+
end
|
3430
|
+
end
|
3431
|
+
|
3432
|
+
# Configuration for summarization.
|
3433
|
+
class GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
|
3434
|
+
include Google::Apis::Core::Hashable
|
3435
|
+
|
3436
|
+
# Resource name of the Dialogflow conversation profile. Format: projects/`
|
3437
|
+
# project`/locations/`location`/conversationProfiles/`conversation_profile`
|
3438
|
+
# Corresponds to the JSON property `conversationProfile`
|
3439
|
+
# @return [String]
|
3440
|
+
attr_accessor :conversation_profile
|
3441
|
+
|
3442
|
+
# Default summarization model to be used.
|
3443
|
+
# Corresponds to the JSON property `summarizationModel`
|
3444
|
+
# @return [String]
|
3445
|
+
attr_accessor :summarization_model
|
3446
|
+
|
3447
|
+
def initialize(**args)
|
3448
|
+
update!(**args)
|
3449
|
+
end
|
3450
|
+
|
3451
|
+
# Update properties of this object
|
3452
|
+
def update!(**args)
|
3453
|
+
@conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile)
|
3454
|
+
@summarization_model = args[:summarization_model] if args.key?(:summarization_model)
|
3311
3455
|
end
|
3312
3456
|
end
|
3313
3457
|
|
@@ -3654,6 +3798,11 @@ module Google
|
|
3654
3798
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Analysis]
|
3655
3799
|
attr_accessor :latest_analysis
|
3656
3800
|
|
3801
|
+
# Conversation summarization suggestion data.
|
3802
|
+
# Corresponds to the JSON property `latestSummary`
|
3803
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData]
|
3804
|
+
attr_accessor :latest_summary
|
3805
|
+
|
3657
3806
|
# Immutable. The conversation medium, if unspecified will default to PHONE_CALL.
|
3658
3807
|
# Corresponds to the JSON property `medium`
|
3659
3808
|
# @return [String]
|
@@ -3718,6 +3867,7 @@ module Google
|
|
3718
3867
|
@labels = args[:labels] if args.key?(:labels)
|
3719
3868
|
@language_code = args[:language_code] if args.key?(:language_code)
|
3720
3869
|
@latest_analysis = args[:latest_analysis] if args.key?(:latest_analysis)
|
3870
|
+
@latest_summary = args[:latest_summary] if args.key?(:latest_summary)
|
3721
3871
|
@medium = args[:medium] if args.key?(:medium)
|
3722
3872
|
@name = args[:name] if args.key?(:name)
|
3723
3873
|
@obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
|
@@ -3851,6 +4001,60 @@ module Google
|
|
3851
4001
|
end
|
3852
4002
|
end
|
3853
4003
|
|
4004
|
+
# Conversation summarization suggestion data.
|
4005
|
+
class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
|
4006
|
+
include Google::Apis::Core::Hashable
|
4007
|
+
|
4008
|
+
# The name of the answer record. Format: projects/`project`/locations/`location`/
|
4009
|
+
# answerRecords/`answer_record`
|
4010
|
+
# Corresponds to the JSON property `answerRecord`
|
4011
|
+
# @return [String]
|
4012
|
+
attr_accessor :answer_record
|
4013
|
+
|
4014
|
+
# The confidence score of the summarization.
|
4015
|
+
# Corresponds to the JSON property `confidence`
|
4016
|
+
# @return [Float]
|
4017
|
+
attr_accessor :confidence
|
4018
|
+
|
4019
|
+
# The name of the model that generates this summary. Format: projects/`project`/
|
4020
|
+
# locations/`location`/conversationModels/`conversation_model`
|
4021
|
+
# Corresponds to the JSON property `conversationModel`
|
4022
|
+
# @return [String]
|
4023
|
+
attr_accessor :conversation_model
|
4024
|
+
|
4025
|
+
# A map that contains metadata about the summarization and the document from
|
4026
|
+
# which it originates.
|
4027
|
+
# Corresponds to the JSON property `metadata`
|
4028
|
+
# @return [Hash<String,String>]
|
4029
|
+
attr_accessor :metadata
|
4030
|
+
|
4031
|
+
# The summarization content that is concatenated into one string.
|
4032
|
+
# Corresponds to the JSON property `text`
|
4033
|
+
# @return [String]
|
4034
|
+
attr_accessor :text
|
4035
|
+
|
4036
|
+
# The summarization content that is divided into sections. The key is the
|
4037
|
+
# section's name and the value is the section's content. There is no specific
|
4038
|
+
# format for the key or value.
|
4039
|
+
# Corresponds to the JSON property `textSections`
|
4040
|
+
# @return [Hash<String,String>]
|
4041
|
+
attr_accessor :text_sections
|
4042
|
+
|
4043
|
+
def initialize(**args)
|
4044
|
+
update!(**args)
|
4045
|
+
end
|
4046
|
+
|
4047
|
+
# Update properties of this object
|
4048
|
+
def update!(**args)
|
4049
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
4050
|
+
@confidence = args[:confidence] if args.key?(:confidence)
|
4051
|
+
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
4052
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
4053
|
+
@text = args[:text] if args.key?(:text)
|
4054
|
+
@text_sections = args[:text_sections] if args.key?(:text_sections)
|
4055
|
+
end
|
4056
|
+
end
|
4057
|
+
|
3854
4058
|
# A message representing the transcript of a conversation.
|
3855
4059
|
class GoogleCloudContactcenterinsightsV1alpha1ConversationTranscript
|
3856
4060
|
include Google::Apis::Core::Hashable
|
@@ -5157,6 +5361,11 @@ module Google
|
|
5157
5361
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ArticleSuggestionData]
|
5158
5362
|
attr_accessor :article_suggestion
|
5159
5363
|
|
5364
|
+
# Conversation summarization suggestion data.
|
5365
|
+
# Corresponds to the JSON property `conversationSummarizationSuggestion`
|
5366
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData]
|
5367
|
+
attr_accessor :conversation_summarization_suggestion
|
5368
|
+
|
5160
5369
|
# The time at which this annotation was created.
|
5161
5370
|
# Corresponds to the JSON property `createTime`
|
5162
5371
|
# @return [String]
|
@@ -5201,6 +5410,7 @@ module Google
|
|
5201
5410
|
@annotation_id = args[:annotation_id] if args.key?(:annotation_id)
|
5202
5411
|
@answer_feedback = args[:answer_feedback] if args.key?(:answer_feedback)
|
5203
5412
|
@article_suggestion = args[:article_suggestion] if args.key?(:article_suggestion)
|
5413
|
+
@conversation_summarization_suggestion = args[:conversation_summarization_suggestion] if args.key?(:conversation_summarization_suggestion)
|
5204
5414
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5205
5415
|
@dialogflow_interaction = args[:dialogflow_interaction] if args.key?(:dialogflow_interaction)
|
5206
5416
|
@end_boundary = args[:end_boundary] if args.key?(:end_boundary)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContactcenterinsightsV1
|
18
18
|
# Version of the google-apis-contactcenterinsights_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.27.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230424"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class GoogleCloudContactcenterinsightsV1AnswerFeedback
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -142,6 +148,12 @@ module Google
|
|
142
148
|
include Google::Apis::Core::JsonObjectSupport
|
143
149
|
end
|
144
150
|
|
151
|
+
class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
153
|
+
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
155
|
+
end
|
156
|
+
|
145
157
|
class GoogleCloudContactcenterinsightsV1ConversationTranscript
|
146
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
147
159
|
|
@@ -580,6 +592,12 @@ module Google
|
|
580
592
|
include Google::Apis::Core::JsonObjectSupport
|
581
593
|
end
|
582
594
|
|
595
|
+
class GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
|
596
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
|
+
|
598
|
+
include Google::Apis::Core::JsonObjectSupport
|
599
|
+
end
|
600
|
+
|
583
601
|
class GoogleCloudContactcenterinsightsV1alpha1AnswerFeedback
|
584
602
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
585
603
|
|
@@ -646,6 +664,12 @@ module Google
|
|
646
664
|
include Google::Apis::Core::JsonObjectSupport
|
647
665
|
end
|
648
666
|
|
667
|
+
class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
|
+
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
671
|
+
end
|
672
|
+
|
649
673
|
class GoogleCloudContactcenterinsightsV1alpha1ConversationTranscript
|
650
674
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
675
|
|
@@ -1048,6 +1072,17 @@ module Google
|
|
1048
1072
|
property :run_phrase_matcher_annotator, as: 'runPhraseMatcherAnnotator'
|
1049
1073
|
property :run_sentiment_annotator, as: 'runSentimentAnnotator'
|
1050
1074
|
property :run_silence_annotator, as: 'runSilenceAnnotator'
|
1075
|
+
property :run_summarization_annotator, as: 'runSummarizationAnnotator'
|
1076
|
+
property :summarization_config, as: 'summarizationConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig::Representation
|
1077
|
+
|
1078
|
+
end
|
1079
|
+
end
|
1080
|
+
|
1081
|
+
class GoogleCloudContactcenterinsightsV1AnnotatorSelectorSummarizationConfig
|
1082
|
+
# @private
|
1083
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1084
|
+
property :conversation_profile, as: 'conversationProfile'
|
1085
|
+
property :summarization_model, as: 'summarizationModel'
|
1051
1086
|
end
|
1052
1087
|
end
|
1053
1088
|
|
@@ -1189,6 +1224,8 @@ module Google
|
|
1189
1224
|
property :language_code, as: 'languageCode'
|
1190
1225
|
property :latest_analysis, as: 'latestAnalysis', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Analysis, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1Analysis::Representation
|
1191
1226
|
|
1227
|
+
property :latest_summary, as: 'latestSummary', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData::Representation
|
1228
|
+
|
1192
1229
|
property :medium, as: 'medium'
|
1193
1230
|
property :name, as: 'name'
|
1194
1231
|
property :obfuscated_user_id, as: 'obfuscatedUserId'
|
@@ -1241,6 +1278,18 @@ module Google
|
|
1241
1278
|
end
|
1242
1279
|
end
|
1243
1280
|
|
1281
|
+
class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
|
1282
|
+
# @private
|
1283
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1284
|
+
property :answer_record, as: 'answerRecord'
|
1285
|
+
property :confidence, as: 'confidence'
|
1286
|
+
property :conversation_model, as: 'conversationModel'
|
1287
|
+
hash :metadata, as: 'metadata'
|
1288
|
+
property :text, as: 'text'
|
1289
|
+
hash :text_sections, as: 'textSections'
|
1290
|
+
end
|
1291
|
+
end
|
1292
|
+
|
1244
1293
|
class GoogleCloudContactcenterinsightsV1ConversationTranscript
|
1245
1294
|
# @private
|
1246
1295
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1759,6 +1808,8 @@ module Google
|
|
1759
1808
|
|
1760
1809
|
property :article_suggestion, as: 'articleSuggestion', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ArticleSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ArticleSuggestionData::Representation
|
1761
1810
|
|
1811
|
+
property :conversation_summarization_suggestion, as: 'conversationSummarizationSuggestion', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData::Representation
|
1812
|
+
|
1762
1813
|
property :create_time, as: 'createTime'
|
1763
1814
|
property :dialogflow_interaction, as: 'dialogflowInteraction', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowInteractionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowInteractionData::Representation
|
1764
1815
|
|
@@ -1954,6 +2005,17 @@ module Google
|
|
1954
2005
|
property :run_phrase_matcher_annotator, as: 'runPhraseMatcherAnnotator'
|
1955
2006
|
property :run_sentiment_annotator, as: 'runSentimentAnnotator'
|
1956
2007
|
property :run_silence_annotator, as: 'runSilenceAnnotator'
|
2008
|
+
property :run_summarization_annotator, as: 'runSummarizationAnnotator'
|
2009
|
+
property :summarization_config, as: 'summarizationConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig::Representation
|
2010
|
+
|
2011
|
+
end
|
2012
|
+
end
|
2013
|
+
|
2014
|
+
class GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
|
2015
|
+
# @private
|
2016
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2017
|
+
property :conversation_profile, as: 'conversationProfile'
|
2018
|
+
property :summarization_model, as: 'summarizationModel'
|
1957
2019
|
end
|
1958
2020
|
end
|
1959
2021
|
|
@@ -2054,6 +2116,8 @@ module Google
|
|
2054
2116
|
property :language_code, as: 'languageCode'
|
2055
2117
|
property :latest_analysis, as: 'latestAnalysis', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Analysis, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Analysis::Representation
|
2056
2118
|
|
2119
|
+
property :latest_summary, as: 'latestSummary', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData::Representation
|
2120
|
+
|
2057
2121
|
property :medium, as: 'medium'
|
2058
2122
|
property :name, as: 'name'
|
2059
2123
|
property :obfuscated_user_id, as: 'obfuscatedUserId'
|
@@ -2106,6 +2170,18 @@ module Google
|
|
2106
2170
|
end
|
2107
2171
|
end
|
2108
2172
|
|
2173
|
+
class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
|
2174
|
+
# @private
|
2175
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2176
|
+
property :answer_record, as: 'answerRecord'
|
2177
|
+
property :confidence, as: 'confidence'
|
2178
|
+
property :conversation_model, as: 'conversationModel'
|
2179
|
+
hash :metadata, as: 'metadata'
|
2180
|
+
property :text, as: 'text'
|
2181
|
+
hash :text_sections, as: 'textSections'
|
2182
|
+
end
|
2183
|
+
end
|
2184
|
+
|
2109
2185
|
class GoogleCloudContactcenterinsightsV1alpha1ConversationTranscript
|
2110
2186
|
# @private
|
2111
2187
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2509,6 +2585,8 @@ module Google
|
|
2509
2585
|
|
2510
2586
|
property :article_suggestion, as: 'articleSuggestion', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ArticleSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ArticleSuggestionData::Representation
|
2511
2587
|
|
2588
|
+
property :conversation_summarization_suggestion, as: 'conversationSummarizationSuggestion', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData::Representation
|
2589
|
+
|
2512
2590
|
property :create_time, as: 'createTime'
|
2513
2591
|
property :dialogflow_interaction, as: 'dialogflowInteraction', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData::Representation
|
2514
2592
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-contactcenterinsights_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-04-
|
11
|
+
date: 2023-04-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.27.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-contactcenterinsights_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|