purecloudplatformclientv2 70.0.0 → 71.0.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 +4 -4
- data/README.md +2 -2
- data/docs/AnalyticsSession.md +1 -0
- data/docs/BuSearchAgentSchedulesRequest.md +15 -0
- data/docs/ConversationsApi.md +198 -0
- data/docs/ManagementUnitReference.md +14 -0
- data/docs/RoutingApi.md +126 -0
- data/docs/SCIMApi.md +270 -0
- data/docs/ScimServiceProviderConfigAuthenticationScheme.md +1 -1
- data/docs/ScimV2Group.md +2 -1
- data/docs/SendAgentlessOutboundMessageRequest.md +16 -0
- data/docs/SendAgentlessOutboundMessageResponse.md +21 -0
- data/docs/ShiftTradeSettings.md +1 -0
- data/docs/TranscriptionSettings.md +14 -0
- data/docs/WhatsAppIntegrationRequest.md +17 -0
- data/docs/WorkPlanReference.md +3 -1
- data/docs/WorkforceManagementApi.md +74 -3
- data/lib/purecloudplatformclientv2.rb +6 -0
- data/lib/purecloudplatformclientv2/api/conversations_api.rb +195 -0
- data/lib/purecloudplatformclientv2/api/routing_api.rb +120 -0
- data/lib/purecloudplatformclientv2/api/scim_api.rb +276 -0
- data/lib/purecloudplatformclientv2/api/workforce_management_api.rb +73 -0
- data/lib/purecloudplatformclientv2/api_client.rb +1 -1
- data/lib/purecloudplatformclientv2/models/analytics_session.rb +30 -4
- data/lib/purecloudplatformclientv2/models/bu_search_agent_schedules_request.rb +266 -0
- data/lib/purecloudplatformclientv2/models/conversation_aggregate_query_predicate.rb +2 -2
- data/lib/purecloudplatformclientv2/models/flow_aggregate_query_predicate.rb +2 -2
- data/lib/purecloudplatformclientv2/models/management_unit_reference.rb +229 -0
- data/lib/purecloudplatformclientv2/models/scim_service_provider_config_authentication_scheme.rb +1 -1
- data/lib/purecloudplatformclientv2/models/scim_v2_group.rb +32 -1
- data/lib/purecloudplatformclientv2/models/segment_detail_query_predicate.rb +2 -2
- data/lib/purecloudplatformclientv2/models/send_agentless_outbound_message_request.rb +314 -0
- data/lib/purecloudplatformclientv2/models/send_agentless_outbound_message_response.rb +424 -0
- data/lib/purecloudplatformclientv2/models/shift_trade_settings.rb +27 -1
- data/lib/purecloudplatformclientv2/models/transcription_settings.rb +252 -0
- data/lib/purecloudplatformclientv2/models/whats_app_integration_request.rb +321 -0
- data/lib/purecloudplatformclientv2/models/work_plan_reference.rb +57 -9
- data/lib/purecloudplatformclientv2/version.rb +1 -1
- metadata +14 -2
@@ -17,15 +17,26 @@ Terms of Service: https://help.mypurecloud.com/articles/terms-and-conditions/
|
|
17
17
|
require 'date'
|
18
18
|
|
19
19
|
module PureCloud
|
20
|
+
# Work plan information
|
20
21
|
class WorkPlanReference
|
21
|
-
# The
|
22
|
+
# The globally unique identifier for the object.
|
22
23
|
attr_accessor :id
|
23
24
|
|
25
|
+
# The management unit to which this work plan belongs. Nullable in some routes
|
26
|
+
attr_accessor :management_unit
|
27
|
+
|
28
|
+
# The URI for this object
|
29
|
+
attr_accessor :self_uri
|
30
|
+
|
24
31
|
# Attribute mapping from ruby-style variable name to JSON key.
|
25
32
|
def self.attribute_map
|
26
33
|
{
|
27
34
|
|
28
|
-
:'id' => :'id'
|
35
|
+
:'id' => :'id',
|
36
|
+
|
37
|
+
:'management_unit' => :'managementUnit',
|
38
|
+
|
39
|
+
:'self_uri' => :'selfUri'
|
29
40
|
|
30
41
|
}
|
31
42
|
end
|
@@ -34,7 +45,11 @@ module PureCloud
|
|
34
45
|
def self.swagger_types
|
35
46
|
{
|
36
47
|
|
37
|
-
:'id' => :'String'
|
48
|
+
:'id' => :'String',
|
49
|
+
|
50
|
+
:'management_unit' => :'ManagementUnitReference',
|
51
|
+
|
52
|
+
:'self_uri' => :'String'
|
38
53
|
|
39
54
|
}
|
40
55
|
end
|
@@ -57,6 +72,24 @@ module PureCloud
|
|
57
72
|
end
|
58
73
|
|
59
74
|
|
75
|
+
if attributes.has_key?(:'managementUnit')
|
76
|
+
|
77
|
+
|
78
|
+
self.management_unit = attributes[:'managementUnit']
|
79
|
+
|
80
|
+
|
81
|
+
end
|
82
|
+
|
83
|
+
|
84
|
+
if attributes.has_key?(:'selfUri')
|
85
|
+
|
86
|
+
|
87
|
+
self.self_uri = attributes[:'selfUri']
|
88
|
+
|
89
|
+
|
90
|
+
end
|
91
|
+
|
92
|
+
|
60
93
|
end
|
61
94
|
|
62
95
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -73,10 +106,13 @@ module PureCloud
|
|
73
106
|
def valid?
|
74
107
|
|
75
108
|
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
109
|
+
|
110
|
+
|
111
|
+
|
112
|
+
|
113
|
+
|
114
|
+
|
115
|
+
|
80
116
|
|
81
117
|
|
82
118
|
|
@@ -89,12 +125,24 @@ module PureCloud
|
|
89
125
|
|
90
126
|
|
91
127
|
|
128
|
+
|
129
|
+
|
130
|
+
|
131
|
+
|
132
|
+
|
133
|
+
|
134
|
+
|
135
|
+
|
136
|
+
|
137
|
+
|
92
138
|
# Checks equality by comparing each attribute.
|
93
139
|
# @param [Object] Object to be compared
|
94
140
|
def ==(o)
|
95
141
|
return true if self.equal?(o)
|
96
142
|
self.class == o.class &&
|
97
|
-
id == o.id
|
143
|
+
id == o.id &&
|
144
|
+
management_unit == o.management_unit &&
|
145
|
+
self_uri == o.self_uri
|
98
146
|
end
|
99
147
|
|
100
148
|
# @see the `==` method
|
@@ -106,7 +154,7 @@ module PureCloud
|
|
106
154
|
# Calculates hash code according to all attributes.
|
107
155
|
# @return [Fixnum] Hash code
|
108
156
|
def hash
|
109
|
-
[id].hash
|
157
|
+
[id, management_unit, self_uri].hash
|
110
158
|
end
|
111
159
|
|
112
160
|
# build the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: purecloudplatformclientv2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 71.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Genesys Developer Evangelists
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-12-
|
11
|
+
date: 2019-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -356,6 +356,7 @@ files:
|
|
356
356
|
- docs/BillingUsageReport.md
|
357
357
|
- docs/BillingUsageResource.md
|
358
358
|
- docs/Biography.md
|
359
|
+
- docs/BuSearchAgentSchedulesRequest.md
|
359
360
|
- docs/Bullseye.md
|
360
361
|
- docs/BusinessUnitReference.md
|
361
362
|
- docs/Calibration.md
|
@@ -1156,6 +1157,7 @@ files:
|
|
1156
1157
|
- docs/LogicalInterfaceEntityListing.md
|
1157
1158
|
- docs/ManagementUnit.md
|
1158
1159
|
- docs/ManagementUnitListing.md
|
1160
|
+
- docs/ManagementUnitReference.md
|
1159
1161
|
- docs/ManagementUnitSettingsRequest.md
|
1160
1162
|
- docs/ManagementUnitSettingsResponse.md
|
1161
1163
|
- docs/Manager.md
|
@@ -1658,6 +1660,8 @@ files:
|
|
1658
1660
|
- docs/SegmentDetailQueryFilter.md
|
1659
1661
|
- docs/SegmentDetailQueryPredicate.md
|
1660
1662
|
- docs/SelectedColumns.md
|
1663
|
+
- docs/SendAgentlessOutboundMessageRequest.md
|
1664
|
+
- docs/SendAgentlessOutboundMessageResponse.md
|
1661
1665
|
- docs/SequenceSchedule.md
|
1662
1666
|
- docs/ServerDate.md
|
1663
1667
|
- docs/ServiceContext.md
|
@@ -1783,6 +1787,7 @@ files:
|
|
1783
1787
|
- docs/TokenInfo.md
|
1784
1788
|
- docs/TokensApi.md
|
1785
1789
|
- docs/TranscriptProperty.md
|
1790
|
+
- docs/TranscriptionSettings.md
|
1786
1791
|
- docs/TransferRequest.md
|
1787
1792
|
- docs/Trunk.md
|
1788
1793
|
- docs/TrunkBase.md
|
@@ -2012,6 +2017,7 @@ files:
|
|
2012
2017
|
- docs/WhatsAppId.md
|
2013
2018
|
- docs/WhatsAppIntegration.md
|
2014
2019
|
- docs/WhatsAppIntegrationEntityListing.md
|
2020
|
+
- docs/WhatsAppIntegrationRequest.md
|
2015
2021
|
- docs/WhatsAppIntegrationUpdateRequest.md
|
2016
2022
|
- docs/WidgetClientConfig.md
|
2017
2023
|
- docs/WidgetClientConfigThirdParty.md
|
@@ -2228,6 +2234,7 @@ files:
|
|
2228
2234
|
- lib/purecloudplatformclientv2/models/billing_usage_report.rb
|
2229
2235
|
- lib/purecloudplatformclientv2/models/billing_usage_resource.rb
|
2230
2236
|
- lib/purecloudplatformclientv2/models/biography.rb
|
2237
|
+
- lib/purecloudplatformclientv2/models/bu_search_agent_schedules_request.rb
|
2231
2238
|
- lib/purecloudplatformclientv2/models/bullseye.rb
|
2232
2239
|
- lib/purecloudplatformclientv2/models/business_unit_reference.rb
|
2233
2240
|
- lib/purecloudplatformclientv2/models/calibration.rb
|
@@ -3014,6 +3021,7 @@ files:
|
|
3014
3021
|
- lib/purecloudplatformclientv2/models/logical_interface_entity_listing.rb
|
3015
3022
|
- lib/purecloudplatformclientv2/models/management_unit.rb
|
3016
3023
|
- lib/purecloudplatformclientv2/models/management_unit_listing.rb
|
3024
|
+
- lib/purecloudplatformclientv2/models/management_unit_reference.rb
|
3017
3025
|
- lib/purecloudplatformclientv2/models/management_unit_settings_request.rb
|
3018
3026
|
- lib/purecloudplatformclientv2/models/management_unit_settings_response.rb
|
3019
3027
|
- lib/purecloudplatformclientv2/models/manager.rb
|
@@ -3498,6 +3506,8 @@ files:
|
|
3498
3506
|
- lib/purecloudplatformclientv2/models/segment_detail_query_filter.rb
|
3499
3507
|
- lib/purecloudplatformclientv2/models/segment_detail_query_predicate.rb
|
3500
3508
|
- lib/purecloudplatformclientv2/models/selected_columns.rb
|
3509
|
+
- lib/purecloudplatformclientv2/models/send_agentless_outbound_message_request.rb
|
3510
|
+
- lib/purecloudplatformclientv2/models/send_agentless_outbound_message_response.rb
|
3501
3511
|
- lib/purecloudplatformclientv2/models/sequence_schedule.rb
|
3502
3512
|
- lib/purecloudplatformclientv2/models/server_date.rb
|
3503
3513
|
- lib/purecloudplatformclientv2/models/service_context.rb
|
@@ -3619,6 +3629,7 @@ files:
|
|
3619
3629
|
- lib/purecloudplatformclientv2/models/token.rb
|
3620
3630
|
- lib/purecloudplatformclientv2/models/token_info.rb
|
3621
3631
|
- lib/purecloudplatformclientv2/models/transcript_property.rb
|
3632
|
+
- lib/purecloudplatformclientv2/models/transcription_settings.rb
|
3622
3633
|
- lib/purecloudplatformclientv2/models/transfer_request.rb
|
3623
3634
|
- lib/purecloudplatformclientv2/models/trunk.rb
|
3624
3635
|
- lib/purecloudplatformclientv2/models/trunk_base.rb
|
@@ -3843,6 +3854,7 @@ files:
|
|
3843
3854
|
- lib/purecloudplatformclientv2/models/whats_app_id.rb
|
3844
3855
|
- lib/purecloudplatformclientv2/models/whats_app_integration.rb
|
3845
3856
|
- lib/purecloudplatformclientv2/models/whats_app_integration_entity_listing.rb
|
3857
|
+
- lib/purecloudplatformclientv2/models/whats_app_integration_request.rb
|
3846
3858
|
- lib/purecloudplatformclientv2/models/whats_app_integration_update_request.rb
|
3847
3859
|
- lib/purecloudplatformclientv2/models/widget_client_config.rb
|
3848
3860
|
- lib/purecloudplatformclientv2/models/widget_client_config_third_party.rb
|