google-apis-contactcenterinsights_v1 0.16.0 → 0.17.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: 4cdd90db3546f6fcebd494240b9e3ebbc550402b3a7b89ae4eccebc6bd5d2184
|
4
|
+
data.tar.gz: d7a17d6ec29b8781729e3e13a171ddbd0d2f6bd2ad24a5fd93b0bf9a1fee16dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6a41063c110c28dc3732e9e11abd59f3f91f5ba9c481c2ec21cd5865b1c1f1f526ca48ffde6a1e1103399976fc8de6e2b0cbda3a19557fa76d8dd3a8b92d9ce4
|
7
|
+
data.tar.gz: 7bf30731c4c08ad9991c53df272d2d7c90ecfe78e534b7492a2da10332834cca272f38fc9fa9fd9910920de8628546a2f07e545530869c923c34f894a681f3f4
|
data/CHANGELOG.md
CHANGED
@@ -431,6 +431,11 @@ module Google
|
|
431
431
|
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1InterruptionData]
|
432
432
|
attr_accessor :interruption_data
|
433
433
|
|
434
|
+
# The data for an issue match annotation.
|
435
|
+
# Corresponds to the JSON property `issueMatchData`
|
436
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueMatchData]
|
437
|
+
attr_accessor :issue_match_data
|
438
|
+
|
434
439
|
# The data for a matched phrase matcher. Represents information identifying a
|
435
440
|
# phrase matcher for a given match.
|
436
441
|
# Corresponds to the JSON property `phraseMatchData`
|
@@ -460,6 +465,7 @@ module Google
|
|
460
465
|
@hold_data = args[:hold_data] if args.key?(:hold_data)
|
461
466
|
@intent_match_data = args[:intent_match_data] if args.key?(:intent_match_data)
|
462
467
|
@interruption_data = args[:interruption_data] if args.key?(:interruption_data)
|
468
|
+
@issue_match_data = args[:issue_match_data] if args.key?(:issue_match_data)
|
463
469
|
@phrase_match_data = args[:phrase_match_data] if args.key?(:phrase_match_data)
|
464
470
|
@sentiment_data = args[:sentiment_data] if args.key?(:sentiment_data)
|
465
471
|
@silence_data = args[:silence_data] if args.key?(:silence_data)
|
@@ -1609,6 +1615,25 @@ module Google
|
|
1609
1615
|
end
|
1610
1616
|
end
|
1611
1617
|
|
1618
|
+
# The data for an issue match annotation.
|
1619
|
+
class GoogleCloudContactcenterinsightsV1IssueMatchData
|
1620
|
+
include Google::Apis::Core::Hashable
|
1621
|
+
|
1622
|
+
# Information about the issue.
|
1623
|
+
# Corresponds to the JSON property `issueAssignment`
|
1624
|
+
# @return [Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueAssignment]
|
1625
|
+
attr_accessor :issue_assignment
|
1626
|
+
|
1627
|
+
def initialize(**args)
|
1628
|
+
update!(**args)
|
1629
|
+
end
|
1630
|
+
|
1631
|
+
# Update properties of this object
|
1632
|
+
def update!(**args)
|
1633
|
+
@issue_assignment = args[:issue_assignment] if args.key?(:issue_assignment)
|
1634
|
+
end
|
1635
|
+
end
|
1636
|
+
|
1612
1637
|
# The issue model resource.
|
1613
1638
|
class GoogleCloudContactcenterinsightsV1IssueModel
|
1614
1639
|
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.
|
19
|
+
GEM_VERSION = "0.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221108"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -298,6 +298,12 @@ module Google
|
|
298
298
|
include Google::Apis::Core::JsonObjectSupport
|
299
299
|
end
|
300
300
|
|
301
|
+
class GoogleCloudContactcenterinsightsV1IssueMatchData
|
302
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
|
+
|
304
|
+
include Google::Apis::Core::JsonObjectSupport
|
305
|
+
end
|
306
|
+
|
301
307
|
class GoogleCloudContactcenterinsightsV1IssueModel
|
302
308
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
303
309
|
|
@@ -722,6 +728,8 @@ module Google
|
|
722
728
|
|
723
729
|
property :interruption_data, as: 'interruptionData', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1InterruptionData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1InterruptionData::Representation
|
724
730
|
|
731
|
+
property :issue_match_data, as: 'issueMatchData', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueMatchData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueMatchData::Representation
|
732
|
+
|
725
733
|
property :phrase_match_data, as: 'phraseMatchData', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1PhraseMatchData::Representation
|
726
734
|
|
727
735
|
property :sentiment_data, as: 'sentimentData', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SentimentData, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1SentimentData::Representation
|
@@ -1069,6 +1077,14 @@ module Google
|
|
1069
1077
|
end
|
1070
1078
|
end
|
1071
1079
|
|
1080
|
+
class GoogleCloudContactcenterinsightsV1IssueMatchData
|
1081
|
+
# @private
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1083
|
+
property :issue_assignment, as: 'issueAssignment', class: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueAssignment, decorator: Google::Apis::ContactcenterinsightsV1::GoogleCloudContactcenterinsightsV1IssueAssignment::Representation
|
1084
|
+
|
1085
|
+
end
|
1086
|
+
end
|
1087
|
+
|
1072
1088
|
class GoogleCloudContactcenterinsightsV1IssueModel
|
1073
1089
|
# @private
|
1074
1090
|
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.
|
4
|
+
version: 0.17.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: 2022-
|
11
|
+
date: 2022-11-14 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.17.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: []
|