google-apis-contactcenterinsights_v1 0.26.0 → 0.28.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: 529d112cecbb2aba9b239ae27230f7d641bd473f493f07108d8459562efa179b
|
4
|
+
data.tar.gz: cdd6cb9f17c8caf66719fc74cfc49116bde9955a2c68b0bfe966d7bdd0e64b87
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 15b5ec6598c833570595b8a5dda2e9af31c8f002ae6f553738c6fd7f849d6665bf824d1be2dff8d5a2eea3f56947dfb6255c3fa897cdb42e6b2dcf53ed289adb
|
7
|
+
data.tar.gz: 3b7ad3e2c59ea737d9ba83675f5eef6d854dbd2ac65ef1a4f13f6d243a6d9b00ee4251a87881071c4d1c3765814339fc3b3f13c8b2e187cf94ca079eee581996
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-contactcenterinsights_v1
|
2
2
|
|
3
|
+
### v0.28.0 (2023-07-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230626
|
6
|
+
|
7
|
+
### v0.27.0 (2023-04-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230424
|
10
|
+
|
3
11
|
### v0.26.0 (2023-04-16)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230409
|
@@ -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
|
@@ -2064,6 +2163,16 @@ module Google
|
|
2064
2163
|
# @return [Fixnum]
|
2065
2164
|
attr_accessor :issue_count
|
2066
2165
|
|
2166
|
+
# Language of the model.
|
2167
|
+
# Corresponds to the JSON property `languageCode`
|
2168
|
+
# @return [String]
|
2169
|
+
attr_accessor :language_code
|
2170
|
+
|
2171
|
+
# Type of the model.
|
2172
|
+
# Corresponds to the JSON property `modelType`
|
2173
|
+
# @return [String]
|
2174
|
+
attr_accessor :model_type
|
2175
|
+
|
2067
2176
|
# Immutable. The resource name of the issue model. Format: projects/`project`/
|
2068
2177
|
# locations/`location`/issueModels/`issue_model`
|
2069
2178
|
# Corresponds to the JSON property `name`
|
@@ -2095,6 +2204,8 @@ module Google
|
|
2095
2204
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2096
2205
|
@input_data_config = args[:input_data_config] if args.key?(:input_data_config)
|
2097
2206
|
@issue_count = args[:issue_count] if args.key?(:issue_count)
|
2207
|
+
@language_code = args[:language_code] if args.key?(:language_code)
|
2208
|
+
@model_type = args[:model_type] if args.key?(:model_type)
|
2098
2209
|
@name = args[:name] if args.key?(:name)
|
2099
2210
|
@state = args[:state] if args.key?(:state)
|
2100
2211
|
@training_stats = args[:training_stats] if args.key?(:training_stats)
|
@@ -2571,7 +2682,7 @@ module Google
|
|
2571
2682
|
attr_accessor :deidentify_template
|
2572
2683
|
|
2573
2684
|
# The fully-qualified DLP inspect template resource name. Format: `projects/`
|
2574
|
-
# project`/inspectTemplates/`template``
|
2685
|
+
# project`/locations/`location`/inspectTemplates/`template``
|
2575
2686
|
# Corresponds to the JSON property `inspectTemplate`
|
2576
2687
|
# @return [String]
|
2577
2688
|
attr_accessor :inspect_template
|
@@ -2608,6 +2719,11 @@ module Google
|
|
2608
2719
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ArticleSuggestionData]
|
2609
2720
|
attr_accessor :article_suggestion
|
2610
2721
|
|
2722
|
+
# Conversation summarization suggestion data.
|
2723
|
+
# Corresponds to the JSON property `conversationSummarizationSuggestion`
|
2724
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData]
|
2725
|
+
attr_accessor :conversation_summarization_suggestion
|
2726
|
+
|
2611
2727
|
# The time at which this annotation was created.
|
2612
2728
|
# Corresponds to the JSON property `createTime`
|
2613
2729
|
# @return [String]
|
@@ -2652,6 +2768,7 @@ module Google
|
|
2652
2768
|
@annotation_id = args[:annotation_id] if args.key?(:annotation_id)
|
2653
2769
|
@answer_feedback = args[:answer_feedback] if args.key?(:answer_feedback)
|
2654
2770
|
@article_suggestion = args[:article_suggestion] if args.key?(:article_suggestion)
|
2771
|
+
@conversation_summarization_suggestion = args[:conversation_summarization_suggestion] if args.key?(:conversation_summarization_suggestion)
|
2655
2772
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2656
2773
|
@dialogflow_interaction = args[:dialogflow_interaction] if args.key?(:dialogflow_interaction)
|
2657
2774
|
@end_boundary = args[:end_boundary] if args.key?(:end_boundary)
|
@@ -3293,6 +3410,17 @@ module Google
|
|
3293
3410
|
attr_accessor :run_silence_annotator
|
3294
3411
|
alias_method :run_silence_annotator?, :run_silence_annotator
|
3295
3412
|
|
3413
|
+
# Whether to run the summarization annotator.
|
3414
|
+
# Corresponds to the JSON property `runSummarizationAnnotator`
|
3415
|
+
# @return [Boolean]
|
3416
|
+
attr_accessor :run_summarization_annotator
|
3417
|
+
alias_method :run_summarization_annotator?, :run_summarization_annotator
|
3418
|
+
|
3419
|
+
# Configuration for summarization.
|
3420
|
+
# Corresponds to the JSON property `summarizationConfig`
|
3421
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig]
|
3422
|
+
attr_accessor :summarization_config
|
3423
|
+
|
3296
3424
|
def initialize(**args)
|
3297
3425
|
update!(**args)
|
3298
3426
|
end
|
@@ -3308,6 +3436,34 @@ module Google
|
|
3308
3436
|
@run_phrase_matcher_annotator = args[:run_phrase_matcher_annotator] if args.key?(:run_phrase_matcher_annotator)
|
3309
3437
|
@run_sentiment_annotator = args[:run_sentiment_annotator] if args.key?(:run_sentiment_annotator)
|
3310
3438
|
@run_silence_annotator = args[:run_silence_annotator] if args.key?(:run_silence_annotator)
|
3439
|
+
@run_summarization_annotator = args[:run_summarization_annotator] if args.key?(:run_summarization_annotator)
|
3440
|
+
@summarization_config = args[:summarization_config] if args.key?(:summarization_config)
|
3441
|
+
end
|
3442
|
+
end
|
3443
|
+
|
3444
|
+
# Configuration for summarization.
|
3445
|
+
class GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
|
3446
|
+
include Google::Apis::Core::Hashable
|
3447
|
+
|
3448
|
+
# Resource name of the Dialogflow conversation profile. Format: projects/`
|
3449
|
+
# project`/locations/`location`/conversationProfiles/`conversation_profile`
|
3450
|
+
# Corresponds to the JSON property `conversationProfile`
|
3451
|
+
# @return [String]
|
3452
|
+
attr_accessor :conversation_profile
|
3453
|
+
|
3454
|
+
# Default summarization model to be used.
|
3455
|
+
# Corresponds to the JSON property `summarizationModel`
|
3456
|
+
# @return [String]
|
3457
|
+
attr_accessor :summarization_model
|
3458
|
+
|
3459
|
+
def initialize(**args)
|
3460
|
+
update!(**args)
|
3461
|
+
end
|
3462
|
+
|
3463
|
+
# Update properties of this object
|
3464
|
+
def update!(**args)
|
3465
|
+
@conversation_profile = args[:conversation_profile] if args.key?(:conversation_profile)
|
3466
|
+
@summarization_model = args[:summarization_model] if args.key?(:summarization_model)
|
3311
3467
|
end
|
3312
3468
|
end
|
3313
3469
|
|
@@ -3654,6 +3810,11 @@ module Google
|
|
3654
3810
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Analysis]
|
3655
3811
|
attr_accessor :latest_analysis
|
3656
3812
|
|
3813
|
+
# Conversation summarization suggestion data.
|
3814
|
+
# Corresponds to the JSON property `latestSummary`
|
3815
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData]
|
3816
|
+
attr_accessor :latest_summary
|
3817
|
+
|
3657
3818
|
# Immutable. The conversation medium, if unspecified will default to PHONE_CALL.
|
3658
3819
|
# Corresponds to the JSON property `medium`
|
3659
3820
|
# @return [String]
|
@@ -3718,6 +3879,7 @@ module Google
|
|
3718
3879
|
@labels = args[:labels] if args.key?(:labels)
|
3719
3880
|
@language_code = args[:language_code] if args.key?(:language_code)
|
3720
3881
|
@latest_analysis = args[:latest_analysis] if args.key?(:latest_analysis)
|
3882
|
+
@latest_summary = args[:latest_summary] if args.key?(:latest_summary)
|
3721
3883
|
@medium = args[:medium] if args.key?(:medium)
|
3722
3884
|
@name = args[:name] if args.key?(:name)
|
3723
3885
|
@obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
|
@@ -3851,6 +4013,60 @@ module Google
|
|
3851
4013
|
end
|
3852
4014
|
end
|
3853
4015
|
|
4016
|
+
# Conversation summarization suggestion data.
|
4017
|
+
class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
|
4018
|
+
include Google::Apis::Core::Hashable
|
4019
|
+
|
4020
|
+
# The name of the answer record. Format: projects/`project`/locations/`location`/
|
4021
|
+
# answerRecords/`answer_record`
|
4022
|
+
# Corresponds to the JSON property `answerRecord`
|
4023
|
+
# @return [String]
|
4024
|
+
attr_accessor :answer_record
|
4025
|
+
|
4026
|
+
# The confidence score of the summarization.
|
4027
|
+
# Corresponds to the JSON property `confidence`
|
4028
|
+
# @return [Float]
|
4029
|
+
attr_accessor :confidence
|
4030
|
+
|
4031
|
+
# The name of the model that generates this summary. Format: projects/`project`/
|
4032
|
+
# locations/`location`/conversationModels/`conversation_model`
|
4033
|
+
# Corresponds to the JSON property `conversationModel`
|
4034
|
+
# @return [String]
|
4035
|
+
attr_accessor :conversation_model
|
4036
|
+
|
4037
|
+
# A map that contains metadata about the summarization and the document from
|
4038
|
+
# which it originates.
|
4039
|
+
# Corresponds to the JSON property `metadata`
|
4040
|
+
# @return [Hash<String,String>]
|
4041
|
+
attr_accessor :metadata
|
4042
|
+
|
4043
|
+
# The summarization content that is concatenated into one string.
|
4044
|
+
# Corresponds to the JSON property `text`
|
4045
|
+
# @return [String]
|
4046
|
+
attr_accessor :text
|
4047
|
+
|
4048
|
+
# The summarization content that is divided into sections. The key is the
|
4049
|
+
# section's name and the value is the section's content. There is no specific
|
4050
|
+
# format for the key or value.
|
4051
|
+
# Corresponds to the JSON property `textSections`
|
4052
|
+
# @return [Hash<String,String>]
|
4053
|
+
attr_accessor :text_sections
|
4054
|
+
|
4055
|
+
def initialize(**args)
|
4056
|
+
update!(**args)
|
4057
|
+
end
|
4058
|
+
|
4059
|
+
# Update properties of this object
|
4060
|
+
def update!(**args)
|
4061
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
4062
|
+
@confidence = args[:confidence] if args.key?(:confidence)
|
4063
|
+
@conversation_model = args[:conversation_model] if args.key?(:conversation_model)
|
4064
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
4065
|
+
@text = args[:text] if args.key?(:text)
|
4066
|
+
@text_sections = args[:text_sections] if args.key?(:text_sections)
|
4067
|
+
end
|
4068
|
+
end
|
4069
|
+
|
3854
4070
|
# A message representing the transcript of a conversation.
|
3855
4071
|
class GoogleCloudContactcenterinsightsV1alpha1ConversationTranscript
|
3856
4072
|
include Google::Apis::Core::Hashable
|
@@ -4921,6 +5137,16 @@ module Google
|
|
4921
5137
|
# @return [Fixnum]
|
4922
5138
|
attr_accessor :issue_count
|
4923
5139
|
|
5140
|
+
# Language of the model.
|
5141
|
+
# Corresponds to the JSON property `languageCode`
|
5142
|
+
# @return [String]
|
5143
|
+
attr_accessor :language_code
|
5144
|
+
|
5145
|
+
# Type of the model.
|
5146
|
+
# Corresponds to the JSON property `modelType`
|
5147
|
+
# @return [String]
|
5148
|
+
attr_accessor :model_type
|
5149
|
+
|
4924
5150
|
# Immutable. The resource name of the issue model. Format: projects/`project`/
|
4925
5151
|
# locations/`location`/issueModels/`issue_model`
|
4926
5152
|
# Corresponds to the JSON property `name`
|
@@ -4952,6 +5178,8 @@ module Google
|
|
4952
5178
|
@display_name = args[:display_name] if args.key?(:display_name)
|
4953
5179
|
@input_data_config = args[:input_data_config] if args.key?(:input_data_config)
|
4954
5180
|
@issue_count = args[:issue_count] if args.key?(:issue_count)
|
5181
|
+
@language_code = args[:language_code] if args.key?(:language_code)
|
5182
|
+
@model_type = args[:model_type] if args.key?(:model_type)
|
4955
5183
|
@name = args[:name] if args.key?(:name)
|
4956
5184
|
@state = args[:state] if args.key?(:state)
|
4957
5185
|
@training_stats = args[:training_stats] if args.key?(:training_stats)
|
@@ -5120,7 +5348,7 @@ module Google
|
|
5120
5348
|
attr_accessor :deidentify_template
|
5121
5349
|
|
5122
5350
|
# The fully-qualified DLP inspect template resource name. Format: `projects/`
|
5123
|
-
# project`/inspectTemplates/`template``
|
5351
|
+
# project`/locations/`location`/inspectTemplates/`template``
|
5124
5352
|
# Corresponds to the JSON property `inspectTemplate`
|
5125
5353
|
# @return [String]
|
5126
5354
|
attr_accessor :inspect_template
|
@@ -5157,6 +5385,11 @@ module Google
|
|
5157
5385
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ArticleSuggestionData]
|
5158
5386
|
attr_accessor :article_suggestion
|
5159
5387
|
|
5388
|
+
# Conversation summarization suggestion data.
|
5389
|
+
# Corresponds to the JSON property `conversationSummarizationSuggestion`
|
5390
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData]
|
5391
|
+
attr_accessor :conversation_summarization_suggestion
|
5392
|
+
|
5160
5393
|
# The time at which this annotation was created.
|
5161
5394
|
# Corresponds to the JSON property `createTime`
|
5162
5395
|
# @return [String]
|
@@ -5201,6 +5434,7 @@ module Google
|
|
5201
5434
|
@annotation_id = args[:annotation_id] if args.key?(:annotation_id)
|
5202
5435
|
@answer_feedback = args[:answer_feedback] if args.key?(:answer_feedback)
|
5203
5436
|
@article_suggestion = args[:article_suggestion] if args.key?(:article_suggestion)
|
5437
|
+
@conversation_summarization_suggestion = args[:conversation_summarization_suggestion] if args.key?(:conversation_summarization_suggestion)
|
5204
5438
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5205
5439
|
@dialogflow_interaction = args[:dialogflow_interaction] if args.key?(:dialogflow_interaction)
|
5206
5440
|
@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.28.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 = "20230626"
|
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
|
@@ -1593,6 +1642,8 @@ module Google
|
|
1593
1642
|
property :input_data_config, as: 'inputDataConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelInputDataConfig::Representation
|
1594
1643
|
|
1595
1644
|
property :issue_count, :numeric_string => true, as: 'issueCount'
|
1645
|
+
property :language_code, as: 'languageCode'
|
1646
|
+
property :model_type, as: 'modelType'
|
1596
1647
|
property :name, as: 'name'
|
1597
1648
|
property :state, as: 'state'
|
1598
1649
|
property :training_stats, as: 'trainingStats', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStats, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueModelLabelStats::Representation
|
@@ -1759,6 +1810,8 @@ module Google
|
|
1759
1810
|
|
1760
1811
|
property :article_suggestion, as: 'articleSuggestion', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ArticleSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ArticleSuggestionData::Representation
|
1761
1812
|
|
1813
|
+
property :conversation_summarization_suggestion, as: 'conversationSummarizationSuggestion', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData::Representation
|
1814
|
+
|
1762
1815
|
property :create_time, as: 'createTime'
|
1763
1816
|
property :dialogflow_interaction, as: 'dialogflowInteraction', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowInteractionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1DialogflowInteractionData::Representation
|
1764
1817
|
|
@@ -1954,6 +2007,17 @@ module Google
|
|
1954
2007
|
property :run_phrase_matcher_annotator, as: 'runPhraseMatcherAnnotator'
|
1955
2008
|
property :run_sentiment_annotator, as: 'runSentimentAnnotator'
|
1956
2009
|
property :run_silence_annotator, as: 'runSilenceAnnotator'
|
2010
|
+
property :run_summarization_annotator, as: 'runSummarizationAnnotator'
|
2011
|
+
property :summarization_config, as: 'summarizationConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig::Representation
|
2012
|
+
|
2013
|
+
end
|
2014
|
+
end
|
2015
|
+
|
2016
|
+
class GoogleCloudContactcenterinsightsV1alpha1AnnotatorSelectorSummarizationConfig
|
2017
|
+
# @private
|
2018
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2019
|
+
property :conversation_profile, as: 'conversationProfile'
|
2020
|
+
property :summarization_model, as: 'summarizationModel'
|
1957
2021
|
end
|
1958
2022
|
end
|
1959
2023
|
|
@@ -2054,6 +2118,8 @@ module Google
|
|
2054
2118
|
property :language_code, as: 'languageCode'
|
2055
2119
|
property :latest_analysis, as: 'latestAnalysis', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Analysis, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1Analysis::Representation
|
2056
2120
|
|
2121
|
+
property :latest_summary, as: 'latestSummary', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData::Representation
|
2122
|
+
|
2057
2123
|
property :medium, as: 'medium'
|
2058
2124
|
property :name, as: 'name'
|
2059
2125
|
property :obfuscated_user_id, as: 'obfuscatedUserId'
|
@@ -2106,6 +2172,18 @@ module Google
|
|
2106
2172
|
end
|
2107
2173
|
end
|
2108
2174
|
|
2175
|
+
class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
|
2176
|
+
# @private
|
2177
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2178
|
+
property :answer_record, as: 'answerRecord'
|
2179
|
+
property :confidence, as: 'confidence'
|
2180
|
+
property :conversation_model, as: 'conversationModel'
|
2181
|
+
hash :metadata, as: 'metadata'
|
2182
|
+
property :text, as: 'text'
|
2183
|
+
hash :text_sections, as: 'textSections'
|
2184
|
+
end
|
2185
|
+
end
|
2186
|
+
|
2109
2187
|
class GoogleCloudContactcenterinsightsV1alpha1ConversationTranscript
|
2110
2188
|
# @private
|
2111
2189
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2440,6 +2518,8 @@ module Google
|
|
2440
2518
|
property :input_data_config, as: 'inputDataConfig', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelInputDataConfig, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelInputDataConfig::Representation
|
2441
2519
|
|
2442
2520
|
property :issue_count, :numeric_string => true, as: 'issueCount'
|
2521
|
+
property :language_code, as: 'languageCode'
|
2522
|
+
property :model_type, as: 'modelType'
|
2443
2523
|
property :name, as: 'name'
|
2444
2524
|
property :state, as: 'state'
|
2445
2525
|
property :training_stats, as: 'trainingStats', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStats, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1IssueModelLabelStats::Representation
|
@@ -2509,6 +2589,8 @@ module Google
|
|
2509
2589
|
|
2510
2590
|
property :article_suggestion, as: 'articleSuggestion', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ArticleSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ArticleSuggestionData::Representation
|
2511
2591
|
|
2592
|
+
property :conversation_summarization_suggestion, as: 'conversationSummarizationSuggestion', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData::Representation
|
2593
|
+
|
2512
2594
|
property :create_time, as: 'createTime'
|
2513
2595
|
property :dialogflow_interaction, as: 'dialogflowInteraction', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1DialogflowInteractionData::Representation
|
2514
2596
|
|
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.28.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-
|
11
|
+
date: 2023-07-02 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.28.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: []
|