google-apis-contactcenterinsights_v1 0.34.0 → 0.36.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9ce255bb5f54f80065cfec1e8ffc4b2f3cdcbfaca7dc49b9af23ecc036a157f6
4
- data.tar.gz: a970b8819f51082eaa5fa4f962964c90c9c664f666a4e3fc974e198466865d25
3
+ metadata.gz: ece095703fecd9173e0fb0d16229c61caf14db21f730b5d040cfae68df50726d
4
+ data.tar.gz: e2692091992a40e099a77c88af4b99621b037a4a0078fbc201dda9a8108f71d6
5
5
  SHA512:
6
- metadata.gz: 8b856aa73c9127144c5730467ff2765ff8b484ac31b3a4570629a93e411b1f0a02ef39f1a80859cc6f5efb26683c57aa9c0da6ab3614de6caae9da47fb1ec480
7
- data.tar.gz: d87e2641717f9582d3492462b5f7608a73dd839ba508d247d48fd71458e73922dec805dea0472b2c7f03e1044b0036c0477e63df09edc35b6ea1393bf9cff29c
6
+ metadata.gz: 4ac75cbd847fed187621a01c46bbf0137f088bdc80bb001762771a434ec2656ea076ada695dc65386a4c3059635db02854abb851744b49b524a83f171c8262bc
7
+ data.tar.gz: bd4108f673e2fa4673e711f6b8536b25fcbba13c717bcdebf565a84226491cf4564120141528b74c10ca0f0a321a3f16a5a8d0e730a507ce27942852e10c10cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-contactcenterinsights_v1
2
2
 
3
+ ### v0.36.0 (2024-01-07)
4
+
5
+ * Regenerated from discovery document revision 20240102
6
+
7
+ ### v0.35.0 (2023-12-10)
8
+
9
+ * Regenerated from discovery document revision 20231204
10
+
3
11
  ### v0.34.0 (2023-11-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20231113
@@ -830,8 +830,7 @@ module Google
830
830
  # @return [String]
831
831
  attr_accessor :create_time
832
832
 
833
- # The conversation source, which is a combination of transcript, audio, and
834
- # metadata.
833
+ # The conversation source, which is a combination of transcript and audio.
835
834
  # Corresponds to the JSON property `dataSource`
836
835
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationDataSource]
837
836
  attr_accessor :data_source
@@ -891,6 +890,11 @@ module Google
891
890
  # @return [String]
892
891
  attr_accessor :obfuscated_user_id
893
892
 
893
+ # Conversation metadata related to quality management.
894
+ # Corresponds to the JSON property `qualityMetadata`
895
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadata]
896
+ attr_accessor :quality_metadata
897
+
894
898
  # Output only. The annotations that were generated during the customer and agent
895
899
  # interaction.
896
900
  # Corresponds to the JSON property `runtimeAnnotations`
@@ -943,6 +947,7 @@ module Google
943
947
  @medium = args[:medium] if args.key?(:medium)
944
948
  @name = args[:name] if args.key?(:name)
945
949
  @obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
950
+ @quality_metadata = args[:quality_metadata] if args.key?(:quality_metadata)
946
951
  @runtime_annotations = args[:runtime_annotations] if args.key?(:runtime_annotations)
947
952
  @start_time = args[:start_time] if args.key?(:start_time)
948
953
  @transcript = args[:transcript] if args.key?(:transcript)
@@ -977,8 +982,7 @@ module Google
977
982
  end
978
983
  end
979
984
 
980
- # The conversation source, which is a combination of transcript, audio, and
981
- # metadata.
985
+ # The conversation source, which is a combination of transcript and audio.
982
986
  class GoogleCloudContactcenterinsightsV1ConversationDataSource
983
987
  include Google::Apis::Core::Hashable
984
988
 
@@ -1074,6 +1078,81 @@ module Google
1074
1078
  end
1075
1079
  end
1076
1080
 
1081
+ # Conversation metadata related to quality management.
1082
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadata
1083
+ include Google::Apis::Core::Hashable
1084
+
1085
+ # Information about agents involved in the call.
1086
+ # Corresponds to the JSON property `agentInfo`
1087
+ # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo>]
1088
+ attr_accessor :agent_info
1089
+
1090
+ # An arbitrary integer value indicating the customer's satisfaction rating.
1091
+ # Corresponds to the JSON property `customerSatisfactionRating`
1092
+ # @return [Fixnum]
1093
+ attr_accessor :customer_satisfaction_rating
1094
+
1095
+ # An arbitrary string value specifying the menu path the customer took.
1096
+ # Corresponds to the JSON property `menuPath`
1097
+ # @return [String]
1098
+ attr_accessor :menu_path
1099
+
1100
+ # The amount of time the customer waited to connect with an agent.
1101
+ # Corresponds to the JSON property `waitDuration`
1102
+ # @return [String]
1103
+ attr_accessor :wait_duration
1104
+
1105
+ def initialize(**args)
1106
+ update!(**args)
1107
+ end
1108
+
1109
+ # Update properties of this object
1110
+ def update!(**args)
1111
+ @agent_info = args[:agent_info] if args.key?(:agent_info)
1112
+ @customer_satisfaction_rating = args[:customer_satisfaction_rating] if args.key?(:customer_satisfaction_rating)
1113
+ @menu_path = args[:menu_path] if args.key?(:menu_path)
1114
+ @wait_duration = args[:wait_duration] if args.key?(:wait_duration)
1115
+ end
1116
+ end
1117
+
1118
+ # Information about an agent involved in the conversation.
1119
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo
1120
+ include Google::Apis::Core::Hashable
1121
+
1122
+ # A user-specified string representing the agent.
1123
+ # Corresponds to the JSON property `agentId`
1124
+ # @return [String]
1125
+ attr_accessor :agent_id
1126
+
1127
+ # The agent's name.
1128
+ # Corresponds to the JSON property `displayName`
1129
+ # @return [String]
1130
+ attr_accessor :display_name
1131
+
1132
+ # A user-provided string indicating the outcome of the agent's segment of the
1133
+ # call.
1134
+ # Corresponds to the JSON property `dispositionCode`
1135
+ # @return [String]
1136
+ attr_accessor :disposition_code
1137
+
1138
+ # A user-specified string representing the agent's team.
1139
+ # Corresponds to the JSON property `team`
1140
+ # @return [String]
1141
+ attr_accessor :team
1142
+
1143
+ def initialize(**args)
1144
+ update!(**args)
1145
+ end
1146
+
1147
+ # Update properties of this object
1148
+ def update!(**args)
1149
+ @agent_id = args[:agent_id] if args.key?(:agent_id)
1150
+ @display_name = args[:display_name] if args.key?(:display_name)
1151
+ @disposition_code = args[:disposition_code] if args.key?(:disposition_code)
1152
+ @team = args[:team] if args.key?(:team)
1153
+ end
1154
+ end
1155
+
1077
1156
  # Conversation summarization suggestion data.
1078
1157
  class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
1079
1158
  include Google::Apis::Core::Hashable
@@ -4035,8 +4114,7 @@ module Google
4035
4114
  # @return [String]
4036
4115
  attr_accessor :create_time
4037
4116
 
4038
- # The conversation source, which is a combination of transcript, audio, and
4039
- # metadata.
4117
+ # The conversation source, which is a combination of transcript and audio.
4040
4118
  # Corresponds to the JSON property `dataSource`
4041
4119
  # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationDataSource]
4042
4120
  attr_accessor :data_source
@@ -4096,6 +4174,11 @@ module Google
4096
4174
  # @return [String]
4097
4175
  attr_accessor :obfuscated_user_id
4098
4176
 
4177
+ # Conversation metadata related to quality management.
4178
+ # Corresponds to the JSON property `qualityMetadata`
4179
+ # @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata]
4180
+ attr_accessor :quality_metadata
4181
+
4099
4182
  # Output only. The annotations that were generated during the customer and agent
4100
4183
  # interaction.
4101
4184
  # Corresponds to the JSON property `runtimeAnnotations`
@@ -4148,6 +4231,7 @@ module Google
4148
4231
  @medium = args[:medium] if args.key?(:medium)
4149
4232
  @name = args[:name] if args.key?(:name)
4150
4233
  @obfuscated_user_id = args[:obfuscated_user_id] if args.key?(:obfuscated_user_id)
4234
+ @quality_metadata = args[:quality_metadata] if args.key?(:quality_metadata)
4151
4235
  @runtime_annotations = args[:runtime_annotations] if args.key?(:runtime_annotations)
4152
4236
  @start_time = args[:start_time] if args.key?(:start_time)
4153
4237
  @transcript = args[:transcript] if args.key?(:transcript)
@@ -4182,8 +4266,7 @@ module Google
4182
4266
  end
4183
4267
  end
4184
4268
 
4185
- # The conversation source, which is a combination of transcript, audio, and
4186
- # metadata.
4269
+ # The conversation source, which is a combination of transcript and audio.
4187
4270
  class GoogleCloudContactcenterinsightsV1alpha1ConversationDataSource
4188
4271
  include Google::Apis::Core::Hashable
4189
4272
 
@@ -4279,6 +4362,81 @@ module Google
4279
4362
  end
4280
4363
  end
4281
4364
 
4365
+ # Conversation metadata related to quality management.
4366
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata
4367
+ include Google::Apis::Core::Hashable
4368
+
4369
+ # Information about agents involved in the call.
4370
+ # Corresponds to the JSON property `agentInfo`
4371
+ # @return [Array<Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo>]
4372
+ attr_accessor :agent_info
4373
+
4374
+ # An arbitrary integer value indicating the customer's satisfaction rating.
4375
+ # Corresponds to the JSON property `customerSatisfactionRating`
4376
+ # @return [Fixnum]
4377
+ attr_accessor :customer_satisfaction_rating
4378
+
4379
+ # An arbitrary string value specifying the menu path the customer took.
4380
+ # Corresponds to the JSON property `menuPath`
4381
+ # @return [String]
4382
+ attr_accessor :menu_path
4383
+
4384
+ # The amount of time the customer waited to connect with an agent.
4385
+ # Corresponds to the JSON property `waitDuration`
4386
+ # @return [String]
4387
+ attr_accessor :wait_duration
4388
+
4389
+ def initialize(**args)
4390
+ update!(**args)
4391
+ end
4392
+
4393
+ # Update properties of this object
4394
+ def update!(**args)
4395
+ @agent_info = args[:agent_info] if args.key?(:agent_info)
4396
+ @customer_satisfaction_rating = args[:customer_satisfaction_rating] if args.key?(:customer_satisfaction_rating)
4397
+ @menu_path = args[:menu_path] if args.key?(:menu_path)
4398
+ @wait_duration = args[:wait_duration] if args.key?(:wait_duration)
4399
+ end
4400
+ end
4401
+
4402
+ # Information about an agent involved in the conversation.
4403
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
4404
+ include Google::Apis::Core::Hashable
4405
+
4406
+ # A user-specified string representing the agent.
4407
+ # Corresponds to the JSON property `agentId`
4408
+ # @return [String]
4409
+ attr_accessor :agent_id
4410
+
4411
+ # The agent's name.
4412
+ # Corresponds to the JSON property `displayName`
4413
+ # @return [String]
4414
+ attr_accessor :display_name
4415
+
4416
+ # A user-provided string indicating the outcome of the agent's segment of the
4417
+ # call.
4418
+ # Corresponds to the JSON property `dispositionCode`
4419
+ # @return [String]
4420
+ attr_accessor :disposition_code
4421
+
4422
+ # A user-specified string representing the agent's team.
4423
+ # Corresponds to the JSON property `team`
4424
+ # @return [String]
4425
+ attr_accessor :team
4426
+
4427
+ def initialize(**args)
4428
+ update!(**args)
4429
+ end
4430
+
4431
+ # Update properties of this object
4432
+ def update!(**args)
4433
+ @agent_id = args[:agent_id] if args.key?(:agent_id)
4434
+ @display_name = args[:display_name] if args.key?(:display_name)
4435
+ @disposition_code = args[:disposition_code] if args.key?(:disposition_code)
4436
+ @team = args[:team] if args.key?(:team)
4437
+ end
4438
+ end
4439
+
4282
4440
  # Conversation summarization suggestion data.
4283
4441
  class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
4284
4442
  include Google::Apis::Core::Hashable
@@ -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.34.0"
19
+ GEM_VERSION = "0.36.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 = "20231113"
25
+ REVISION = "20240102"
26
26
  end
27
27
  end
28
28
  end
@@ -166,6 +166,18 @@ module Google
166
166
  include Google::Apis::Core::JsonObjectSupport
167
167
  end
168
168
 
169
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadata
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
175
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo
176
+ class Representation < Google::Apis::Core::JsonRepresentation; end
177
+
178
+ include Google::Apis::Core::JsonObjectSupport
179
+ end
180
+
169
181
  class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
170
182
  class Representation < Google::Apis::Core::JsonRepresentation; end
171
183
 
@@ -706,6 +718,18 @@ module Google
706
718
  include Google::Apis::Core::JsonObjectSupport
707
719
  end
708
720
 
721
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata
722
+ class Representation < Google::Apis::Core::JsonRepresentation; end
723
+
724
+ include Google::Apis::Core::JsonObjectSupport
725
+ end
726
+
727
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
728
+ class Representation < Google::Apis::Core::JsonRepresentation; end
729
+
730
+ include Google::Apis::Core::JsonObjectSupport
731
+ end
732
+
709
733
  class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
710
734
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
735
 
@@ -1307,6 +1331,8 @@ module Google
1307
1331
  property :medium, as: 'medium'
1308
1332
  property :name, as: 'name'
1309
1333
  property :obfuscated_user_id, as: 'obfuscatedUserId'
1334
+ property :quality_metadata, as: 'qualityMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadata::Representation
1335
+
1310
1336
  collection :runtime_annotations, as: 'runtimeAnnotations', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RuntimeAnnotation, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1RuntimeAnnotation::Representation
1311
1337
 
1312
1338
  property :start_time, as: 'startTime'
@@ -1356,6 +1382,27 @@ module Google
1356
1382
  end
1357
1383
  end
1358
1384
 
1385
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadata
1386
+ # @private
1387
+ class Representation < Google::Apis::Core::JsonRepresentation
1388
+ collection :agent_info, as: 'agentInfo', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo::Representation
1389
+
1390
+ property :customer_satisfaction_rating, as: 'customerSatisfactionRating'
1391
+ property :menu_path, as: 'menuPath'
1392
+ property :wait_duration, as: 'waitDuration'
1393
+ end
1394
+ end
1395
+
1396
+ class GoogleCloudContactcenterinsightsV1ConversationQualityMetadataAgentInfo
1397
+ # @private
1398
+ class Representation < Google::Apis::Core::JsonRepresentation
1399
+ property :agent_id, as: 'agentId'
1400
+ property :display_name, as: 'displayName'
1401
+ property :disposition_code, as: 'dispositionCode'
1402
+ property :team, as: 'team'
1403
+ end
1404
+ end
1405
+
1359
1406
  class GoogleCloudContactcenterinsightsV1ConversationSummarizationSuggestionData
1360
1407
  # @private
1361
1408
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2249,6 +2296,8 @@ module Google
2249
2296
  property :medium, as: 'medium'
2250
2297
  property :name, as: 'name'
2251
2298
  property :obfuscated_user_id, as: 'obfuscatedUserId'
2299
+ property :quality_metadata, as: 'qualityMetadata', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata::Representation
2300
+
2252
2301
  collection :runtime_annotations, as: 'runtimeAnnotations', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RuntimeAnnotation, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1RuntimeAnnotation::Representation
2253
2302
 
2254
2303
  property :start_time, as: 'startTime'
@@ -2298,6 +2347,27 @@ module Google
2298
2347
  end
2299
2348
  end
2300
2349
 
2350
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadata
2351
+ # @private
2352
+ class Representation < Google::Apis::Core::JsonRepresentation
2353
+ collection :agent_info, as: 'agentInfo', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo::Representation
2354
+
2355
+ property :customer_satisfaction_rating, as: 'customerSatisfactionRating'
2356
+ property :menu_path, as: 'menuPath'
2357
+ property :wait_duration, as: 'waitDuration'
2358
+ end
2359
+ end
2360
+
2361
+ class GoogleCloudContactcenterinsightsV1alpha1ConversationQualityMetadataAgentInfo
2362
+ # @private
2363
+ class Representation < Google::Apis::Core::JsonRepresentation
2364
+ property :agent_id, as: 'agentId'
2365
+ property :display_name, as: 'displayName'
2366
+ property :disposition_code, as: 'dispositionCode'
2367
+ property :team, as: 'team'
2368
+ end
2369
+ end
2370
+
2301
2371
  class GoogleCloudContactcenterinsightsV1alpha1ConversationSummarizationSuggestionData
2302
2372
  # @private
2303
2373
  class Representation < Google::Apis::Core::JsonRepresentation
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.34.0
4
+ version: 0.36.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-19 00:00:00.000000000 Z
11
+ date: 2024-01-07 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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-contactcenterinsights_v1/v0.36.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.19
78
+ rubygems_version: 3.5.3
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Contact Center AI Insights API V1