purecloudplatformclientv2 30.0.0 → 30.1.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/ConversationsApi.md +60 -0
- data/docs/CreateActivityCodeRequest.md +3 -3
- data/docs/JsonNode.md +1 -1
- data/docs/RoutingApi.md +259 -0
- data/docs/UserLanguageEntityListing.md +22 -0
- data/docs/UserRoutingLanguage.md +18 -0
- data/docs/UserRoutingLanguagePost.md +16 -0
- data/docs/UsersApi.md +259 -0
- data/docs/ViewFilter.md +22 -11
- data/docs/WorkforceManagementApi.md +14 -14
- data/lib/purecloudplatformclientv2.rb +3 -0
- data/lib/purecloudplatformclientv2/api/conversations_api.rb +65 -0
- data/lib/purecloudplatformclientv2/api/routing_api.rb +330 -0
- data/lib/purecloudplatformclientv2/api/users_api.rb +330 -0
- data/lib/purecloudplatformclientv2/api/workforce_management_api.rb +14 -14
- data/lib/purecloudplatformclientv2/api_client.rb +1 -1
- data/lib/purecloudplatformclientv2/models/create_activity_code_request.rb +0 -15
- data/lib/purecloudplatformclientv2/models/json_node.rb +17 -17
- data/lib/purecloudplatformclientv2/models/reporting_export_job_request.rb +2 -2
- data/lib/purecloudplatformclientv2/models/reporting_export_job_response.rb +2 -2
- data/lib/purecloudplatformclientv2/models/user_language_entity_listing.rb +428 -0
- data/lib/purecloudplatformclientv2/models/user_routing_language.rb +346 -0
- data/lib/purecloudplatformclientv2/models/user_routing_language_post.rb +291 -0
- data/lib/purecloudplatformclientv2/models/view_filter.rb +313 -15
- data/lib/purecloudplatformclientv2/version.rb +1 -1
- metadata +8 -2
@@ -18,39 +18,72 @@ require 'date'
|
|
18
18
|
|
19
19
|
module PureCloud
|
20
20
|
class ViewFilter
|
21
|
-
# The media types used to filter the
|
21
|
+
# The media types are used to filter the view
|
22
22
|
attr_accessor :media_types
|
23
23
|
|
24
|
-
# The queue ids used to filter the
|
24
|
+
# The queue ids are used to filter the view
|
25
25
|
attr_accessor :queue_ids
|
26
26
|
|
27
|
-
# The skill ids used to filter the
|
27
|
+
# The skill ids are used to filter the view
|
28
28
|
attr_accessor :skill_ids
|
29
29
|
|
30
|
-
# The language ids used to filter the
|
30
|
+
# The language ids are used to filter the view
|
31
31
|
attr_accessor :language_ids
|
32
32
|
|
33
|
-
# The directions used to filter the
|
33
|
+
# The directions are used to filter the view
|
34
34
|
attr_accessor :directions
|
35
35
|
|
36
|
-
# The wrap up codes used to filter the
|
36
|
+
# The wrap up codes are used to filter the view
|
37
37
|
attr_accessor :wrap_up_codes
|
38
38
|
|
39
|
-
# The dnis list used to filter the
|
39
|
+
# The dnis list is used to filter the view
|
40
40
|
attr_accessor :dnis_list
|
41
41
|
|
42
|
-
# The user ids used to filter the
|
42
|
+
# The user ids are used to filter the view
|
43
43
|
attr_accessor :user_ids
|
44
44
|
|
45
|
-
# The address To values used to filter the
|
45
|
+
# The address To values are used to filter the view
|
46
46
|
attr_accessor :address_tos
|
47
47
|
|
48
|
-
# The
|
48
|
+
# The address from values are used to filter the view
|
49
|
+
attr_accessor :address_froms
|
50
|
+
|
51
|
+
# The outbound campaign ids are used to filter the view
|
49
52
|
attr_accessor :outbound_campaign_ids
|
50
53
|
|
51
|
-
# The outbound contact list ids used to filter the
|
54
|
+
# The outbound contact list ids are used to filter the view
|
52
55
|
attr_accessor :outbound_contact_list_ids
|
53
56
|
|
57
|
+
# The contact ids are used to filter the view
|
58
|
+
attr_accessor :contact_ids
|
59
|
+
|
60
|
+
# The ani list ids are used to filter the view
|
61
|
+
attr_accessor :ani_list
|
62
|
+
|
63
|
+
# The duration is used to filter the view
|
64
|
+
attr_accessor :duration_milliseconds
|
65
|
+
|
66
|
+
# The evaluationScore is used to filter the view
|
67
|
+
attr_accessor :evaluation_score
|
68
|
+
|
69
|
+
# The evaluationCriticalScore is used to filter the view
|
70
|
+
attr_accessor :evaluation_critical_score
|
71
|
+
|
72
|
+
# The evaluation form ids are used to filter the view
|
73
|
+
attr_accessor :evaluation_form_ids
|
74
|
+
|
75
|
+
# The evaluated agent ids are used to filter the view
|
76
|
+
attr_accessor :evaluated_agent_ids
|
77
|
+
|
78
|
+
# The evaluator ids are used to filter the view
|
79
|
+
attr_accessor :evaluator_ids
|
80
|
+
|
81
|
+
# Indicates filtering for transfers
|
82
|
+
attr_accessor :transferred
|
83
|
+
|
84
|
+
# Indicates filtering for abandons
|
85
|
+
attr_accessor :abandoned
|
86
|
+
|
54
87
|
# Attribute mapping from ruby-style variable name to JSON key.
|
55
88
|
def self.attribute_map
|
56
89
|
{
|
@@ -73,9 +106,31 @@ module PureCloud
|
|
73
106
|
|
74
107
|
:'address_tos' => :'addressTos',
|
75
108
|
|
109
|
+
:'address_froms' => :'addressFroms',
|
110
|
+
|
76
111
|
:'outbound_campaign_ids' => :'outboundCampaignIds',
|
77
112
|
|
78
|
-
:'outbound_contact_list_ids' => :'outboundContactListIds'
|
113
|
+
:'outbound_contact_list_ids' => :'outboundContactListIds',
|
114
|
+
|
115
|
+
:'contact_ids' => :'contactIds',
|
116
|
+
|
117
|
+
:'ani_list' => :'aniList',
|
118
|
+
|
119
|
+
:'duration_milliseconds' => :'durationMilliseconds',
|
120
|
+
|
121
|
+
:'evaluation_score' => :'evaluationScore',
|
122
|
+
|
123
|
+
:'evaluation_critical_score' => :'evaluationCriticalScore',
|
124
|
+
|
125
|
+
:'evaluation_form_ids' => :'evaluationFormIds',
|
126
|
+
|
127
|
+
:'evaluated_agent_ids' => :'evaluatedAgentIds',
|
128
|
+
|
129
|
+
:'evaluator_ids' => :'evaluatorIds',
|
130
|
+
|
131
|
+
:'transferred' => :'transferred',
|
132
|
+
|
133
|
+
:'abandoned' => :'abandoned'
|
79
134
|
|
80
135
|
}
|
81
136
|
end
|
@@ -102,9 +157,31 @@ module PureCloud
|
|
102
157
|
|
103
158
|
:'address_tos' => :'Array<String>',
|
104
159
|
|
160
|
+
:'address_froms' => :'Array<String>',
|
161
|
+
|
105
162
|
:'outbound_campaign_ids' => :'Array<String>',
|
106
163
|
|
107
|
-
:'outbound_contact_list_ids' => :'Array<String>'
|
164
|
+
:'outbound_contact_list_ids' => :'Array<String>',
|
165
|
+
|
166
|
+
:'contact_ids' => :'Array<String>',
|
167
|
+
|
168
|
+
:'ani_list' => :'Array<String>',
|
169
|
+
|
170
|
+
:'duration_milliseconds' => :'NumericRange',
|
171
|
+
|
172
|
+
:'evaluation_score' => :'NumericRange',
|
173
|
+
|
174
|
+
:'evaluation_critical_score' => :'NumericRange',
|
175
|
+
|
176
|
+
:'evaluation_form_ids' => :'Array<String>',
|
177
|
+
|
178
|
+
:'evaluated_agent_ids' => :'Array<String>',
|
179
|
+
|
180
|
+
:'evaluator_ids' => :'Array<String>',
|
181
|
+
|
182
|
+
:'transferred' => :'BOOLEAN',
|
183
|
+
|
184
|
+
:'abandoned' => :'BOOLEAN'
|
108
185
|
|
109
186
|
}
|
110
187
|
end
|
@@ -214,6 +291,17 @@ module PureCloud
|
|
214
291
|
|
215
292
|
|
216
293
|
|
294
|
+
end
|
295
|
+
|
296
|
+
|
297
|
+
if attributes.has_key?(:'addressFroms')
|
298
|
+
|
299
|
+
if (value = attributes[:'addressFroms']).is_a?(Array)
|
300
|
+
self.address_froms = value
|
301
|
+
end
|
302
|
+
|
303
|
+
|
304
|
+
|
217
305
|
end
|
218
306
|
|
219
307
|
|
@@ -239,6 +327,106 @@ module PureCloud
|
|
239
327
|
end
|
240
328
|
|
241
329
|
|
330
|
+
if attributes.has_key?(:'contactIds')
|
331
|
+
|
332
|
+
if (value = attributes[:'contactIds']).is_a?(Array)
|
333
|
+
self.contact_ids = value
|
334
|
+
end
|
335
|
+
|
336
|
+
|
337
|
+
|
338
|
+
end
|
339
|
+
|
340
|
+
|
341
|
+
if attributes.has_key?(:'aniList')
|
342
|
+
|
343
|
+
if (value = attributes[:'aniList']).is_a?(Array)
|
344
|
+
self.ani_list = value
|
345
|
+
end
|
346
|
+
|
347
|
+
|
348
|
+
|
349
|
+
end
|
350
|
+
|
351
|
+
|
352
|
+
if attributes.has_key?(:'durationMilliseconds')
|
353
|
+
|
354
|
+
|
355
|
+
self.duration_milliseconds = attributes[:'durationMilliseconds']
|
356
|
+
|
357
|
+
|
358
|
+
end
|
359
|
+
|
360
|
+
|
361
|
+
if attributes.has_key?(:'evaluationScore')
|
362
|
+
|
363
|
+
|
364
|
+
self.evaluation_score = attributes[:'evaluationScore']
|
365
|
+
|
366
|
+
|
367
|
+
end
|
368
|
+
|
369
|
+
|
370
|
+
if attributes.has_key?(:'evaluationCriticalScore')
|
371
|
+
|
372
|
+
|
373
|
+
self.evaluation_critical_score = attributes[:'evaluationCriticalScore']
|
374
|
+
|
375
|
+
|
376
|
+
end
|
377
|
+
|
378
|
+
|
379
|
+
if attributes.has_key?(:'evaluationFormIds')
|
380
|
+
|
381
|
+
if (value = attributes[:'evaluationFormIds']).is_a?(Array)
|
382
|
+
self.evaluation_form_ids = value
|
383
|
+
end
|
384
|
+
|
385
|
+
|
386
|
+
|
387
|
+
end
|
388
|
+
|
389
|
+
|
390
|
+
if attributes.has_key?(:'evaluatedAgentIds')
|
391
|
+
|
392
|
+
if (value = attributes[:'evaluatedAgentIds']).is_a?(Array)
|
393
|
+
self.evaluated_agent_ids = value
|
394
|
+
end
|
395
|
+
|
396
|
+
|
397
|
+
|
398
|
+
end
|
399
|
+
|
400
|
+
|
401
|
+
if attributes.has_key?(:'evaluatorIds')
|
402
|
+
|
403
|
+
if (value = attributes[:'evaluatorIds']).is_a?(Array)
|
404
|
+
self.evaluator_ids = value
|
405
|
+
end
|
406
|
+
|
407
|
+
|
408
|
+
|
409
|
+
end
|
410
|
+
|
411
|
+
|
412
|
+
if attributes.has_key?(:'transferred')
|
413
|
+
|
414
|
+
|
415
|
+
self.transferred = attributes[:'transferred']
|
416
|
+
|
417
|
+
|
418
|
+
end
|
419
|
+
|
420
|
+
|
421
|
+
if attributes.has_key?(:'abandoned')
|
422
|
+
|
423
|
+
|
424
|
+
self.abandoned = attributes[:'abandoned']
|
425
|
+
|
426
|
+
|
427
|
+
end
|
428
|
+
|
429
|
+
|
242
430
|
end
|
243
431
|
|
244
432
|
# Show invalid properties with the reasons. Usually used together with valid?
|
@@ -277,6 +465,50 @@ module PureCloud
|
|
277
465
|
|
278
466
|
|
279
467
|
|
468
|
+
|
469
|
+
|
470
|
+
|
471
|
+
|
472
|
+
|
473
|
+
|
474
|
+
|
475
|
+
|
476
|
+
|
477
|
+
|
478
|
+
|
479
|
+
|
480
|
+
|
481
|
+
|
482
|
+
|
483
|
+
|
484
|
+
|
485
|
+
|
486
|
+
|
487
|
+
|
488
|
+
|
489
|
+
|
490
|
+
|
491
|
+
|
492
|
+
|
493
|
+
|
494
|
+
|
495
|
+
|
496
|
+
|
497
|
+
|
498
|
+
|
499
|
+
|
500
|
+
|
501
|
+
|
502
|
+
|
503
|
+
|
504
|
+
|
505
|
+
|
506
|
+
|
507
|
+
|
508
|
+
|
509
|
+
|
510
|
+
|
511
|
+
|
280
512
|
|
281
513
|
|
282
514
|
|
@@ -335,6 +567,61 @@ module PureCloud
|
|
335
567
|
|
336
568
|
|
337
569
|
|
570
|
+
|
571
|
+
|
572
|
+
|
573
|
+
|
574
|
+
|
575
|
+
|
576
|
+
|
577
|
+
|
578
|
+
|
579
|
+
|
580
|
+
|
581
|
+
|
582
|
+
|
583
|
+
|
584
|
+
|
585
|
+
|
586
|
+
|
587
|
+
|
588
|
+
|
589
|
+
|
590
|
+
|
591
|
+
|
592
|
+
|
593
|
+
|
594
|
+
|
595
|
+
|
596
|
+
|
597
|
+
|
598
|
+
|
599
|
+
|
600
|
+
|
601
|
+
|
602
|
+
|
603
|
+
|
604
|
+
|
605
|
+
|
606
|
+
|
607
|
+
|
608
|
+
|
609
|
+
|
610
|
+
|
611
|
+
|
612
|
+
|
613
|
+
|
614
|
+
|
615
|
+
|
616
|
+
|
617
|
+
|
618
|
+
|
619
|
+
|
620
|
+
|
621
|
+
|
622
|
+
|
623
|
+
|
624
|
+
|
338
625
|
|
339
626
|
|
340
627
|
|
@@ -370,8 +657,19 @@ module PureCloud
|
|
370
657
|
dnis_list == o.dnis_list &&
|
371
658
|
user_ids == o.user_ids &&
|
372
659
|
address_tos == o.address_tos &&
|
660
|
+
address_froms == o.address_froms &&
|
373
661
|
outbound_campaign_ids == o.outbound_campaign_ids &&
|
374
|
-
outbound_contact_list_ids == o.outbound_contact_list_ids
|
662
|
+
outbound_contact_list_ids == o.outbound_contact_list_ids &&
|
663
|
+
contact_ids == o.contact_ids &&
|
664
|
+
ani_list == o.ani_list &&
|
665
|
+
duration_milliseconds == o.duration_milliseconds &&
|
666
|
+
evaluation_score == o.evaluation_score &&
|
667
|
+
evaluation_critical_score == o.evaluation_critical_score &&
|
668
|
+
evaluation_form_ids == o.evaluation_form_ids &&
|
669
|
+
evaluated_agent_ids == o.evaluated_agent_ids &&
|
670
|
+
evaluator_ids == o.evaluator_ids &&
|
671
|
+
transferred == o.transferred &&
|
672
|
+
abandoned == o.abandoned
|
375
673
|
end
|
376
674
|
|
377
675
|
# @see the `==` method
|
@@ -383,7 +681,7 @@ module PureCloud
|
|
383
681
|
# Calculates hash code according to all attributes.
|
384
682
|
# @return [Fixnum] Hash code
|
385
683
|
def hash
|
386
|
-
[media_types, queue_ids, skill_ids, language_ids, directions, wrap_up_codes, dnis_list, user_ids, address_tos, outbound_campaign_ids, outbound_contact_list_ids].hash
|
684
|
+
[media_types, queue_ids, skill_ids, language_ids, directions, wrap_up_codes, dnis_list, user_ids, address_tos, address_froms, outbound_campaign_ids, outbound_contact_list_ids, contact_ids, ani_list, duration_milliseconds, evaluation_score, evaluation_critical_score, evaluation_form_ids, evaluated_agent_ids, evaluator_ids, transferred, abandoned].hash
|
387
685
|
end
|
388
686
|
|
389
687
|
# 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: 30.
|
4
|
+
version: 30.1.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: 2018-04-
|
11
|
+
date: 2018-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -1289,6 +1289,7 @@ files:
|
|
1289
1289
|
- docs/UserEntityListing.md
|
1290
1290
|
- docs/UserExpands.md
|
1291
1291
|
- docs/UserImage.md
|
1292
|
+
- docs/UserLanguageEntityListing.md
|
1292
1293
|
- docs/UserListScheduleRequestBody.md
|
1293
1294
|
- docs/UserMe.md
|
1294
1295
|
- docs/UserParam.md
|
@@ -1303,6 +1304,8 @@ files:
|
|
1303
1304
|
- docs/UserRecordingEntityListing.md
|
1304
1305
|
- docs/UserRecordingsApi.md
|
1305
1306
|
- docs/UserReference.md
|
1307
|
+
- docs/UserRoutingLanguage.md
|
1308
|
+
- docs/UserRoutingLanguagePost.md
|
1306
1309
|
- docs/UserRoutingSkill.md
|
1307
1310
|
- docs/UserRoutingSkillPost.md
|
1308
1311
|
- docs/UserRoutingStatusNotification.md
|
@@ -2471,6 +2474,7 @@ files:
|
|
2471
2474
|
- lib/purecloudplatformclientv2/models/user_entity_listing.rb
|
2472
2475
|
- lib/purecloudplatformclientv2/models/user_expands.rb
|
2473
2476
|
- lib/purecloudplatformclientv2/models/user_image.rb
|
2477
|
+
- lib/purecloudplatformclientv2/models/user_language_entity_listing.rb
|
2474
2478
|
- lib/purecloudplatformclientv2/models/user_list_schedule_request_body.rb
|
2475
2479
|
- lib/purecloudplatformclientv2/models/user_me.rb
|
2476
2480
|
- lib/purecloudplatformclientv2/models/user_param.rb
|
@@ -2484,6 +2488,8 @@ files:
|
|
2484
2488
|
- lib/purecloudplatformclientv2/models/user_recording.rb
|
2485
2489
|
- lib/purecloudplatformclientv2/models/user_recording_entity_listing.rb
|
2486
2490
|
- lib/purecloudplatformclientv2/models/user_reference.rb
|
2491
|
+
- lib/purecloudplatformclientv2/models/user_routing_language.rb
|
2492
|
+
- lib/purecloudplatformclientv2/models/user_routing_language_post.rb
|
2487
2493
|
- lib/purecloudplatformclientv2/models/user_routing_skill.rb
|
2488
2494
|
- lib/purecloudplatformclientv2/models/user_routing_skill_post.rb
|
2489
2495
|
- lib/purecloudplatformclientv2/models/user_routing_status_notification.rb
|