purecloud 0.49.1 → 0.50.1

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.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/config-ruby.json +1 -1
  4. data/doc_out/AuthorizationApi.html.md +4 -4
  5. data/doc_out/CallbackMediaParticipant.html.md +5 -5
  6. data/doc_out/CampaignDiagnostics.html.md +1 -0
  7. data/doc_out/ConversationsApi.html.md +10 -10
  8. data/doc_out/Document.html.md +1 -1
  9. data/doc_out/DomainLogicalInterface.html.md +0 -1
  10. data/doc_out/EdgeGroup.html.md +1 -2
  11. data/doc_out/FaxDocument.html.md +1 -1
  12. data/doc_out/GroupsSearchResponse.html.md +0 -1
  13. data/doc_out/JsonNode.html.md +2 -2
  14. data/doc_out/Keyword.html.md +5 -5
  15. data/doc_out/KeywordSet.html.md +3 -3
  16. data/doc_out/Line.html.md +1 -0
  17. data/doc_out/LocationsSearchResponse.html.md +0 -1
  18. data/doc_out/OutboundApi.html.md +2 -2
  19. data/doc_out/PresenceApi.html.md +2 -2
  20. data/doc_out/QualityApi.html.md +18 -18
  21. data/doc_out/QualityAudit.html.md +1 -1
  22. data/doc_out/RecordingApi.html.md +4 -4
  23. data/doc_out/RoutingApi.html.md +315 -0
  24. data/doc_out/RuleSetDiagnostic.html.md +14 -0
  25. data/doc_out/ScreenRecordingSession.html.md +1 -1
  26. data/doc_out/TelephonyProvidersEdgeApi.html.md +20 -6
  27. data/doc_out/TrunkBaseAssignment.html.md +1 -1
  28. data/doc_out/UsersApi.html.md +3 -1
  29. data/doc_out/UsersSearchResponse.html.md +0 -1
  30. data/doc_out/index.html.md +3 -3
  31. data/lib/purecloud.rb +1 -1
  32. data/lib/purecloud/api/authorization_api.rb +4 -4
  33. data/lib/purecloud/api/conversations_api.rb +15 -15
  34. data/lib/purecloud/api/outbound_api.rb +3 -3
  35. data/lib/purecloud/api/presence_api.rb +3 -3
  36. data/lib/purecloud/api/quality_api.rb +18 -18
  37. data/lib/purecloud/api/recording_api.rb +4 -4
  38. data/lib/purecloud/api/routing_api.rb +330 -0
  39. data/lib/purecloud/api/telephony_providers_edge_api.rb +12 -0
  40. data/lib/purecloud/api/users_api.rb +3 -0
  41. data/lib/purecloud/api_client.rb +1 -1
  42. data/lib/purecloud/models/analytics_query_predicate.rb +1 -1
  43. data/lib/purecloud/models/callback_media_participant.rb +5 -0
  44. data/lib/purecloud/models/campaign_diagnostics.rb +14 -1
  45. data/lib/purecloud/models/document.rb +11 -11
  46. data/lib/purecloud/models/domain_logical_interface.rb +1 -14
  47. data/lib/purecloud/models/edge_group.rb +2 -15
  48. data/lib/purecloud/models/fax_document.rb +11 -11
  49. data/lib/purecloud/models/groups_search_response.rb +4 -16
  50. data/lib/purecloud/models/json_node.rb +20 -20
  51. data/lib/purecloud/models/keyword.rb +5 -0
  52. data/lib/purecloud/models/keyword_set.rb +2 -0
  53. data/lib/purecloud/models/line.rb +11 -1
  54. data/lib/purecloud/models/locations_search_response.rb +4 -16
  55. data/lib/purecloud/models/quality_audit.rb +11 -11
  56. data/lib/purecloud/models/{dialer_contact_entity_listing.rb → rule_set_diagnostic.rb} +17 -95
  57. data/lib/purecloud/models/screen_recording_session.rb +1 -0
  58. data/lib/purecloud/models/trunk_base_assignment.rb +1 -1
  59. data/lib/purecloud/models/users_search_response.rb +4 -16
  60. data/lib/purecloud/version.rb +1 -1
  61. data/newVersion.md +1 -1
  62. data/swagger.json +1 -1
  63. data/version.json +1 -1
  64. metadata +4 -4
  65. data/doc_out/DialerContactEntityListing.html.md +0 -22
@@ -8,7 +8,7 @@ title: TrunkBaseAssignment
8
8
  |Name | Type | Description | Notes|
9
9
  |------------ | ------------- | ------------- | -------------|
10
10
  | **family** | **Integer** | The address family to use with the trunk base settings. 2=IPv4, 23=IPv6 | [optional] |
11
- | **trunk_base** | [**UriReference**](UriReference.html) | A trunk base settings reference. | [optional] |
11
+ | **trunk_base** | [**TrunkBase**](TrunkBase.html) | A trunk base settings reference. | [optional] |
12
12
  {: class="table table-striped"}
13
13
 
14
14
 
@@ -701,7 +701,8 @@ user_id = "user_id_example" # String | User ID
701
701
 
702
702
  opts = {
703
703
  page_size: 25, # Integer | Page size
704
- page_number: 1 # Integer | Page number
704
+ page_number: 1, # Integer | Page number
705
+ joined: true # BOOLEAN | Is joined to the queue
705
706
  }
706
707
 
707
708
  begin
@@ -720,6 +721,7 @@ Name | Type | Description | Notes
720
721
  **user_id** | **String**| User ID |
721
722
  **page_size** | **Integer**| Page size | [optional] [default to 25]
722
723
  **page_number** | **Integer**| Page number | [optional] [default to 1]
724
+ **joined** | **BOOLEAN**| Is joined to the queue | [optional] [default to true]
723
725
  {: class="table table-striped"}
724
726
 
725
727
 
@@ -16,7 +16,6 @@ title: UsersSearchResponse
16
16
  | **next_page** | **String** | | [optional] |
17
17
  | **types** | **Array<String>** | | [optional] |
18
18
  | **results** | [**Array<User>**](User.html) | | [optional] |
19
- | **aggregations** | [**Array<User>**](User.html) | | [optional] |
20
19
  {: class="table table-striped"}
21
20
 
22
21
 
@@ -9,8 +9,8 @@ With the PureCloud Platform API, you can control all aspects of your PureCloud e
9
9
  This SDK is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
10
10
 
11
11
  - API version: v2
12
- - Package version: 0.49.1
13
- - Build date: 2016-07-31T03:13:57.719Z
12
+ - Package version: 0.50.1
13
+ - Build date: 2016-08-14T03:13:45.449Z
14
14
 
15
15
  For more information, please visit [https://developer.mypurecloud.com](https://developer.mypurecloud.com)
16
16
 
@@ -18,7 +18,7 @@ For more information, please visit [https://developer.mypurecloud.com](https://d
18
18
 
19
19
  ### from rubygems.org
20
20
 
21
- gem 'purecloud', '~> 0.49.1'
21
+ gem 'purecloud', '~> 0.50.1'
22
22
 
23
23
  ### Install from Git
24
24
 
@@ -155,7 +155,6 @@ require 'purecloud/models/detail'
155
155
  require 'purecloud/models/dialer_action'
156
156
  require 'purecloud/models/dialer_audit_request'
157
157
  require 'purecloud/models/dialer_contact'
158
- require 'purecloud/models/dialer_contact_entity_listing'
159
158
  require 'purecloud/models/dialer_preview'
160
159
  require 'purecloud/models/dialer_rule'
161
160
  require 'purecloud/models/digit_length'
@@ -409,6 +408,7 @@ require 'purecloud/models/routing_data'
409
408
  require 'purecloud/models/routing_skill'
410
409
  require 'purecloud/models/routing_status'
411
410
  require 'purecloud/models/rule_set'
411
+ require 'purecloud/models/rule_set_diagnostic'
412
412
  require 'purecloud/models/rule_set_entity_listing'
413
413
  require 'purecloud/models/run_now_response'
414
414
  require 'purecloud/models/salesforce'
@@ -264,10 +264,10 @@ module PureCloud
264
264
  # @option opts [Integer] :page_size The total page size requested (default to 25)
265
265
  # @option opts [Integer] :page_number The page number requested (default to 1)
266
266
  # @option opts [String] :sort_by variable name requested to sort by
267
- # @option opts [Array<String>] :expand variable name requested by expand list
267
+ # @option opts [Array<Object>] :expand variable name requested by expand list
268
268
  # @option opts [String] :next_page next page token
269
269
  # @option opts [String] :previous_page Previous page token
270
- # @option opts [Array<String>] :permission
270
+ # @option opts [Array<Object>] :permission
271
271
  # @option opts [BOOLEAN] :user_count (default to true)
272
272
  # @return [OrganizationRoleEntityListing]
273
273
  def get_roles(opts = {})
@@ -281,10 +281,10 @@ module PureCloud
281
281
  # @option opts [Integer] :page_size The total page size requested
282
282
  # @option opts [Integer] :page_number The page number requested
283
283
  # @option opts [String] :sort_by variable name requested to sort by
284
- # @option opts [Array<String>] :expand variable name requested by expand list
284
+ # @option opts [Array<Object>] :expand variable name requested by expand list
285
285
  # @option opts [String] :next_page next page token
286
286
  # @option opts [String] :previous_page Previous page token
287
- # @option opts [Array<String>] :permission
287
+ # @option opts [Array<Object>] :permission
288
288
  # @option opts [BOOLEAN] :user_count
289
289
  # @return [Array<(OrganizationRoleEntityListing, Fixnum, Hash)>] OrganizationRoleEntityListing data, response status code and response headers
290
290
  def get_roles_with_http_info(opts = {})
@@ -344,7 +344,7 @@ module PureCloud
344
344
  # @param participant_id
345
345
  # @param [Hash] opts the optional parameters
346
346
  # @option opts [BOOLEAN] :provisional Indicates if the wrap-up code is provisional. (default to false)
347
- # @return [WrapupCode]
347
+ # @return [Wrapup]
348
348
  def get_callbacks_callback_id_participants_participant_id_wrapup(callback_id, participant_id, opts = {})
349
349
  data, status_code, headers = get_callbacks_callback_id_participants_participant_id_wrapup_with_http_info(callback_id, participant_id, opts)
350
350
  return data
@@ -356,7 +356,7 @@ module PureCloud
356
356
  # @param participant_id
357
357
  # @param [Hash] opts the optional parameters
358
358
  # @option opts [BOOLEAN] :provisional Indicates if the wrap-up code is provisional.
359
- # @return [Array<(WrapupCode, Fixnum, Hash)>] WrapupCode data, response status code and response headers
359
+ # @return [Array<(Wrapup, Fixnum, Hash)>] Wrapup data, response status code and response headers
360
360
  def get_callbacks_callback_id_participants_participant_id_wrapup_with_http_info(callback_id, participant_id, opts = {})
361
361
  if @api_client.config.debugging
362
362
  @api_client.config.logger.debug "Calling API: ConversationsApi#get_callbacks_callback_id_participants_participant_id_wrapup ..."
@@ -399,7 +399,7 @@ module PureCloud
399
399
  :form_params => form_params,
400
400
  :body => post_body,
401
401
  :auth_names => auth_names,
402
- :return_type => 'WrapupCode')
402
+ :return_type => 'Wrapup')
403
403
  if @api_client.config.debugging
404
404
  @api_client.config.logger.debug "API called: ConversationsApi#get_callbacks_callback_id_participants_participant_id_wrapup\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
405
405
  end
@@ -592,7 +592,7 @@ module PureCloud
592
592
  # @param participant_id
593
593
  # @param [Hash] opts the optional parameters
594
594
  # @option opts [BOOLEAN] :provisional Indicates if the wrap-up code is provisional. (default to false)
595
- # @return [WrapupCode]
595
+ # @return [Wrapup]
596
596
  def get_calls_call_id_participants_participant_id_wrapup(call_id, participant_id, opts = {})
597
597
  data, status_code, headers = get_calls_call_id_participants_participant_id_wrapup_with_http_info(call_id, participant_id, opts)
598
598
  return data
@@ -604,7 +604,7 @@ module PureCloud
604
604
  # @param participant_id
605
605
  # @param [Hash] opts the optional parameters
606
606
  # @option opts [BOOLEAN] :provisional Indicates if the wrap-up code is provisional.
607
- # @return [Array<(WrapupCode, Fixnum, Hash)>] WrapupCode data, response status code and response headers
607
+ # @return [Array<(Wrapup, Fixnum, Hash)>] Wrapup data, response status code and response headers
608
608
  def get_calls_call_id_participants_participant_id_wrapup_with_http_info(call_id, participant_id, opts = {})
609
609
  if @api_client.config.debugging
610
610
  @api_client.config.logger.debug "Calling API: ConversationsApi#get_calls_call_id_participants_participant_id_wrapup ..."
@@ -647,7 +647,7 @@ module PureCloud
647
647
  :form_params => form_params,
648
648
  :body => post_body,
649
649
  :auth_names => auth_names,
650
- :return_type => 'WrapupCode')
650
+ :return_type => 'Wrapup')
651
651
  if @api_client.config.debugging
652
652
  @api_client.config.logger.debug "API called: ConversationsApi#get_calls_call_id_participants_participant_id_wrapup\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
653
653
  end
@@ -959,7 +959,7 @@ module PureCloud
959
959
  # @param participant_id
960
960
  # @param [Hash] opts the optional parameters
961
961
  # @option opts [BOOLEAN] :provisional Indicates if the wrap-up code is provisional. (default to false)
962
- # @return [WrapupCode]
962
+ # @return [Wrapup]
963
963
  def get_chats_chat_id_participants_participant_id_wrapup(chat_id, participant_id, opts = {})
964
964
  data, status_code, headers = get_chats_chat_id_participants_participant_id_wrapup_with_http_info(chat_id, participant_id, opts)
965
965
  return data
@@ -971,7 +971,7 @@ module PureCloud
971
971
  # @param participant_id
972
972
  # @param [Hash] opts the optional parameters
973
973
  # @option opts [BOOLEAN] :provisional Indicates if the wrap-up code is provisional.
974
- # @return [Array<(WrapupCode, Fixnum, Hash)>] WrapupCode data, response status code and response headers
974
+ # @return [Array<(Wrapup, Fixnum, Hash)>] Wrapup data, response status code and response headers
975
975
  def get_chats_chat_id_participants_participant_id_wrapup_with_http_info(chat_id, participant_id, opts = {})
976
976
  if @api_client.config.debugging
977
977
  @api_client.config.logger.debug "Calling API: ConversationsApi#get_chats_chat_id_participants_participant_id_wrapup ..."
@@ -1014,7 +1014,7 @@ module PureCloud
1014
1014
  :form_params => form_params,
1015
1015
  :body => post_body,
1016
1016
  :auth_names => auth_names,
1017
- :return_type => 'WrapupCode')
1017
+ :return_type => 'Wrapup')
1018
1018
  if @api_client.config.debugging
1019
1019
  @api_client.config.logger.debug "API called: ConversationsApi#get_chats_chat_id_participants_participant_id_wrapup\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1020
1020
  end
@@ -1219,7 +1219,7 @@ module PureCloud
1219
1219
  # @param conversation_id conversation ID
1220
1220
  # @param participant_id participant ID
1221
1221
  # @param [Hash] opts the optional parameters
1222
- # @return [WrapupCode]
1222
+ # @return [Array<WrapupCode>]
1223
1223
  def get_conversation_id_participants_participant_id_wrapupcodes(conversation_id, participant_id, opts = {})
1224
1224
  data, status_code, headers = get_conversation_id_participants_participant_id_wrapupcodes_with_http_info(conversation_id, participant_id, opts)
1225
1225
  return data
@@ -1230,7 +1230,7 @@ module PureCloud
1230
1230
  # @param conversation_id conversation ID
1231
1231
  # @param participant_id participant ID
1232
1232
  # @param [Hash] opts the optional parameters
1233
- # @return [Array<(WrapupCode, Fixnum, Hash)>] WrapupCode data, response status code and response headers
1233
+ # @return [Array<(Array<WrapupCode>, Fixnum, Hash)>] Array<WrapupCode> data, response status code and response headers
1234
1234
  def get_conversation_id_participants_participant_id_wrapupcodes_with_http_info(conversation_id, participant_id, opts = {})
1235
1235
  if @api_client.config.debugging
1236
1236
  @api_client.config.logger.debug "Calling API: ConversationsApi#get_conversation_id_participants_participant_id_wrapupcodes ..."
@@ -1272,7 +1272,7 @@ module PureCloud
1272
1272
  :form_params => form_params,
1273
1273
  :body => post_body,
1274
1274
  :auth_names => auth_names,
1275
- :return_type => 'WrapupCode')
1275
+ :return_type => 'Array<WrapupCode>')
1276
1276
  if @api_client.config.debugging
1277
1277
  @api_client.config.logger.debug "API called: ConversationsApi#get_conversation_id_participants_participant_id_wrapupcodes\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1278
1278
  end
@@ -1703,7 +1703,7 @@ module PureCloud
1703
1703
  # @param participant_id
1704
1704
  # @param [Hash] opts the optional parameters
1705
1705
  # @option opts [BOOLEAN] :provisional Indicates if the wrap-up code is provisional. (default to false)
1706
- # @return [WrapupCode]
1706
+ # @return [Wrapup]
1707
1707
  def get_emails_email_id_participants_participant_id_wrapup(email_id, participant_id, opts = {})
1708
1708
  data, status_code, headers = get_emails_email_id_participants_participant_id_wrapup_with_http_info(email_id, participant_id, opts)
1709
1709
  return data
@@ -1715,7 +1715,7 @@ module PureCloud
1715
1715
  # @param participant_id
1716
1716
  # @param [Hash] opts the optional parameters
1717
1717
  # @option opts [BOOLEAN] :provisional Indicates if the wrap-up code is provisional.
1718
- # @return [Array<(WrapupCode, Fixnum, Hash)>] WrapupCode data, response status code and response headers
1718
+ # @return [Array<(Wrapup, Fixnum, Hash)>] Wrapup data, response status code and response headers
1719
1719
  def get_emails_email_id_participants_participant_id_wrapup_with_http_info(email_id, participant_id, opts = {})
1720
1720
  if @api_client.config.debugging
1721
1721
  @api_client.config.logger.debug "Calling API: ConversationsApi#get_emails_email_id_participants_participant_id_wrapup ..."
@@ -1758,7 +1758,7 @@ module PureCloud
1758
1758
  :form_params => form_params,
1759
1759
  :body => post_body,
1760
1760
  :auth_names => auth_names,
1761
- :return_type => 'WrapupCode')
1761
+ :return_type => 'Wrapup')
1762
1762
  if @api_client.config.debugging
1763
1763
  @api_client.config.logger.debug "API called: ConversationsApi#get_emails_email_id_participants_participant_id_wrapup\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1764
1764
  end
@@ -2937,7 +2937,7 @@ module PureCloud
2937
2937
  # @param body Contact
2938
2938
  # @param [Hash] opts the optional parameters
2939
2939
  # @option opts [BOOLEAN] :priority Contact priority. True means the contact(s) will go to the beginning of the list, false means at the end.
2940
- # @return [DialerContactEntityListing]
2940
+ # @return [Array<DialerContact>]
2941
2941
  def post_contactlists_contactlist_id_contacts(contact_list_id, body, opts = {})
2942
2942
  data, status_code, headers = post_contactlists_contactlist_id_contacts_with_http_info(contact_list_id, body, opts)
2943
2943
  return data
@@ -2949,7 +2949,7 @@ module PureCloud
2949
2949
  # @param body Contact
2950
2950
  # @param [Hash] opts the optional parameters
2951
2951
  # @option opts [BOOLEAN] :priority Contact priority. True means the contact(s) will go to the beginning of the list, false means at the end.
2952
- # @return [Array<(DialerContactEntityListing, Fixnum, Hash)>] DialerContactEntityListing data, response status code and response headers
2952
+ # @return [Array<(Array<DialerContact>, Fixnum, Hash)>] Array<DialerContact> data, response status code and response headers
2953
2953
  def post_contactlists_contactlist_id_contacts_with_http_info(contact_list_id, body, opts = {})
2954
2954
  if @api_client.config.debugging
2955
2955
  @api_client.config.logger.debug "Calling API: OutboundApi#post_contactlists_contactlist_id_contacts ..."
@@ -2992,7 +2992,7 @@ module PureCloud
2992
2992
  :form_params => form_params,
2993
2993
  :body => post_body,
2994
2994
  :auth_names => auth_names,
2995
- :return_type => 'DialerContactEntityListing')
2995
+ :return_type => 'Array<DialerContact>')
2996
2996
  if @api_client.config.debugging
2997
2997
  @api_client.config.logger.debug "API called: OutboundApi#post_contactlists_contactlist_id_contacts\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
2998
2998
  end
@@ -211,7 +211,7 @@ module PureCloud
211
211
  # Get the list of SystemPresences
212
212
  #
213
213
  # @param [Hash] opts the optional parameters
214
- # @return [SystemPresence]
214
+ # @return [Array<SystemPresence>]
215
215
  def get_systempresences(opts = {})
216
216
  data, status_code, headers = get_systempresences_with_http_info(opts)
217
217
  return data
@@ -220,7 +220,7 @@ module PureCloud
220
220
  # Get the list of SystemPresences
221
221
  #
222
222
  # @param [Hash] opts the optional parameters
223
- # @return [Array<(SystemPresence, Fixnum, Hash)>] SystemPresence data, response status code and response headers
223
+ # @return [Array<(Array<SystemPresence>, Fixnum, Hash)>] Array<SystemPresence> data, response status code and response headers
224
224
  def get_systempresences_with_http_info(opts = {})
225
225
  if @api_client.config.debugging
226
226
  @api_client.config.logger.debug "Calling API: PresenceApi#get_systempresences ..."
@@ -256,7 +256,7 @@ module PureCloud
256
256
  :form_params => form_params,
257
257
  :body => post_body,
258
258
  :auth_names => auth_names,
259
- :return_type => 'SystemPresence')
259
+ :return_type => 'Array<SystemPresence>')
260
260
  if @api_client.config.debugging
261
261
  @api_client.config.logger.debug "API called: PresenceApi#get_systempresences\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
262
262
  end
@@ -344,12 +344,12 @@ module PureCloud
344
344
  # @option opts [Integer] :page_size The total page size requested (default to 25)
345
345
  # @option opts [Integer] :page_number The page number requested (default to 1)
346
346
  # @option opts [String] :sort_by variable name requested to sort by
347
- # @option opts [Array<String>] :expand variable name requested by expand list
347
+ # @option opts [Array<Object>] :expand variable name requested by expand list
348
348
  # @option opts [String] :next_page next page token
349
349
  # @option opts [String] :previous_page Previous page token
350
350
  # @option opts [DateTime] :start_time Start time of agent activity. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ
351
351
  # @option opts [DateTime] :end_time End time of agent activity. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ
352
- # @option opts [Array<String>] :agent_user_id user id of agent requested
352
+ # @option opts [Array<Object>] :agent_user_id user id of agent requested
353
353
  # @option opts [String] :evaluator_user_id user id of the evaluator
354
354
  # @option opts [String] :name name
355
355
  # @option opts [String] :group group id
@@ -365,12 +365,12 @@ module PureCloud
365
365
  # @option opts [Integer] :page_size The total page size requested
366
366
  # @option opts [Integer] :page_number The page number requested
367
367
  # @option opts [String] :sort_by variable name requested to sort by
368
- # @option opts [Array<String>] :expand variable name requested by expand list
368
+ # @option opts [Array<Object>] :expand variable name requested by expand list
369
369
  # @option opts [String] :next_page next page token
370
370
  # @option opts [String] :previous_page Previous page token
371
371
  # @option opts [DateTime] :start_time Start time of agent activity. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ
372
372
  # @option opts [DateTime] :end_time End time of agent activity. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ
373
- # @option opts [Array<String>] :agent_user_id user id of agent requested
373
+ # @option opts [Array<Object>] :agent_user_id user id of agent requested
374
374
  # @option opts [String] :evaluator_user_id user id of the evaluator
375
375
  # @option opts [String] :name name
376
376
  # @option opts [String] :group group id
@@ -436,7 +436,7 @@ module PureCloud
436
436
  # @option opts [Integer] :page_size The total page size requested (default to 25)
437
437
  # @option opts [Integer] :page_number The page number requested (default to 1)
438
438
  # @option opts [String] :sort_by variable name requested to sort by
439
- # @option opts [Array<String>] :expand variable name requested by expand list
439
+ # @option opts [Array<Object>] :expand variable name requested by expand list
440
440
  # @option opts [String] :next_page next page token
441
441
  # @option opts [String] :previous_page Previous page token
442
442
  # @option opts [String] :conversation_id conversation id
@@ -455,7 +455,7 @@ module PureCloud
455
455
  # @option opts [Integer] :page_size The total page size requested
456
456
  # @option opts [Integer] :page_number The page number requested
457
457
  # @option opts [String] :sort_by variable name requested to sort by
458
- # @option opts [Array<String>] :expand variable name requested by expand list
458
+ # @option opts [Array<Object>] :expand variable name requested by expand list
459
459
  # @option opts [String] :next_page next page token
460
460
  # @option opts [String] :previous_page Previous page token
461
461
  # @option opts [String] :conversation_id conversation id
@@ -590,7 +590,7 @@ module PureCloud
590
590
  # @option opts [Integer] :page_size The total page size requested (default to 25)
591
591
  # @option opts [Integer] :page_number The page number requested (default to 1)
592
592
  # @option opts [String] :sort_by variable name requested to sort by
593
- # @option opts [Array<String>] :expand variable name requested by expand list
593
+ # @option opts [Array<Object>] :expand variable name requested by expand list
594
594
  # @option opts [String] :next_page next page token
595
595
  # @option opts [String] :previous_page Previous page token
596
596
  # @option opts [String] :recording_id id of the recording
@@ -608,7 +608,7 @@ module PureCloud
608
608
  # @option opts [Integer] :page_size The total page size requested
609
609
  # @option opts [Integer] :page_number The page number requested
610
610
  # @option opts [String] :sort_by variable name requested to sort by
611
- # @option opts [Array<String>] :expand variable name requested by expand list
611
+ # @option opts [Array<Object>] :expand variable name requested by expand list
612
612
  # @option opts [String] :next_page next page token
613
613
  # @option opts [String] :previous_page Previous page token
614
614
  # @option opts [String] :recording_id id of the recording
@@ -741,7 +741,7 @@ module PureCloud
741
741
  # @option opts [Integer] :page_size The total page size requested (default to 25)
742
742
  # @option opts [Integer] :page_number The page number requested (default to 1)
743
743
  # @option opts [String] :sort_by variable name requested to sort by
744
- # @option opts [Array<String>] :expand variable name requested by expand list
744
+ # @option opts [Array<Object>] :expand variable name requested by expand list
745
745
  # @option opts [String] :next_page next page token
746
746
  # @option opts [String] :previous_page Previous page token
747
747
  # @option opts [String] :conversation_id conversationId specified
@@ -750,7 +750,7 @@ module PureCloud
750
750
  # @option opts [String] :queue_id queue id
751
751
  # @option opts [String] :start_time start time of the evaluation query
752
752
  # @option opts [String] :end_time end time of the evaluation query
753
- # @option opts [Array<String>] :evaluation_state evaluation state options: Pending, InProgress, Finished
753
+ # @option opts [Array<Object>] :evaluation_state evaluation state options: Pending, InProgress, Finished
754
754
  # @option opts [BOOLEAN] :is_released the evaluation has been released
755
755
  # @option opts [BOOLEAN] :agent_has_read agent has the evaluation
756
756
  # @option opts [BOOLEAN] :expand_answer_total_scores get the total scores for evaluations
@@ -767,7 +767,7 @@ module PureCloud
767
767
  # @option opts [Integer] :page_size The total page size requested
768
768
  # @option opts [Integer] :page_number The page number requested
769
769
  # @option opts [String] :sort_by variable name requested to sort by
770
- # @option opts [Array<String>] :expand variable name requested by expand list
770
+ # @option opts [Array<Object>] :expand variable name requested by expand list
771
771
  # @option opts [String] :next_page next page token
772
772
  # @option opts [String] :previous_page Previous page token
773
773
  # @option opts [String] :conversation_id conversationId specified
@@ -776,7 +776,7 @@ module PureCloud
776
776
  # @option opts [String] :queue_id queue id
777
777
  # @option opts [String] :start_time start time of the evaluation query
778
778
  # @option opts [String] :end_time end time of the evaluation query
779
- # @option opts [Array<String>] :evaluation_state evaluation state options: Pending, InProgress, Finished
779
+ # @option opts [Array<Object>] :evaluation_state evaluation state options: Pending, InProgress, Finished
780
780
  # @option opts [BOOLEAN] :is_released the evaluation has been released
781
781
  # @option opts [BOOLEAN] :agent_has_read agent has the evaluation
782
782
  # @option opts [BOOLEAN] :expand_answer_total_scores get the total scores for evaluations
@@ -847,13 +847,13 @@ module PureCloud
847
847
  # @option opts [Integer] :page_size The total page size requested (default to 25)
848
848
  # @option opts [Integer] :page_number The page number requested (default to 1)
849
849
  # @option opts [String] :sort_by variable name requested to sort by
850
- # @option opts [Array<String>] :expand variable name requested by expand list
850
+ # @option opts [Array<Object>] :expand variable name requested by expand list
851
851
  # @option opts [String] :next_page next page token
852
852
  # @option opts [String] :previous_page Previous page token
853
853
  # @option opts [DateTime] :start_time The start time specified. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ
854
854
  # @option opts [DateTime] :end_time The end time specified. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ
855
855
  # @option opts [String] :name Evaluator name
856
- # @option opts [Array<String>] :permission permission strings
856
+ # @option opts [Array<Object>] :permission permission strings
857
857
  # @option opts [String] :group group id
858
858
  # @return [EvaluatorActivityEntityListing]
859
859
  def get_evaluators_activity(opts = {})
@@ -867,13 +867,13 @@ module PureCloud
867
867
  # @option opts [Integer] :page_size The total page size requested
868
868
  # @option opts [Integer] :page_number The page number requested
869
869
  # @option opts [String] :sort_by variable name requested to sort by
870
- # @option opts [Array<String>] :expand variable name requested by expand list
870
+ # @option opts [Array<Object>] :expand variable name requested by expand list
871
871
  # @option opts [String] :next_page next page token
872
872
  # @option opts [String] :previous_page Previous page token
873
873
  # @option opts [DateTime] :start_time The start time specified. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ
874
874
  # @option opts [DateTime] :end_time The end time specified. Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ
875
875
  # @option opts [String] :name Evaluator name
876
- # @option opts [Array<String>] :permission permission strings
876
+ # @option opts [Array<Object>] :permission permission strings
877
877
  # @option opts [String] :group group id
878
878
  # @return [Array<(EvaluatorActivityEntityListing, Fixnum, Hash)>] EvaluatorActivityEntityListing data, response status code and response headers
879
879
  def get_evaluators_activity_with_http_info(opts = {})
@@ -1137,7 +1137,7 @@ module PureCloud
1137
1137
  # @option opts [Integer] :page_size The total page size requested (default to 25)
1138
1138
  # @option opts [Integer] :page_number The page number requested (default to 1)
1139
1139
  # @option opts [String] :sort_by variable name requested to sort by
1140
- # @option opts [Array<String>] :expand variable name requested by expand list
1140
+ # @option opts [Array<Object>] :expand variable name requested by expand list
1141
1141
  # @option opts [String] :next_page next page token
1142
1142
  # @option opts [String] :previous_page Previous page token
1143
1143
  # @option opts [String] :name the keyword set name - used for filtering results in searches.
@@ -1153,7 +1153,7 @@ module PureCloud
1153
1153
  # @option opts [Integer] :page_size The total page size requested
1154
1154
  # @option opts [Integer] :page_number The page number requested
1155
1155
  # @option opts [String] :sort_by variable name requested to sort by
1156
- # @option opts [Array<String>] :expand variable name requested by expand list
1156
+ # @option opts [Array<Object>] :expand variable name requested by expand list
1157
1157
  # @option opts [String] :next_page next page token
1158
1158
  # @option opts [String] :previous_page Previous page token
1159
1159
  # @option opts [String] :name the keyword set name - used for filtering results in searches.
@@ -562,7 +562,7 @@ module PureCloud
562
562
  # @option opts [Integer] :page_size The total page size requested (default to 25)
563
563
  # @option opts [Integer] :page_number The page number requested (default to 1)
564
564
  # @option opts [String] :sort_by variable name requested to sort by
565
- # @option opts [Array<String>] :expand variable name requested by expand list
565
+ # @option opts [Array<Object>] :expand variable name requested by expand list
566
566
  # @option opts [String] :next_page next page token
567
567
  # @option opts [String] :previous_page Previous page token
568
568
  # @option opts [String] :name the policy name - used for filtering results in searches.
@@ -581,7 +581,7 @@ module PureCloud
581
581
  # @option opts [Integer] :page_size The total page size requested
582
582
  # @option opts [Integer] :page_number The page number requested
583
583
  # @option opts [String] :sort_by variable name requested to sort by
584
- # @option opts [Array<String>] :expand variable name requested by expand list
584
+ # @option opts [Array<Object>] :expand variable name requested by expand list
585
585
  # @option opts [String] :next_page next page token
586
586
  # @option opts [String] :previous_page Previous page token
587
587
  # @option opts [String] :name the policy name - used for filtering results in searches.
@@ -767,7 +767,7 @@ module PureCloud
767
767
  # @option opts [Integer] :page_size The total page size requested (default to 25)
768
768
  # @option opts [Integer] :page_number The page number requested (default to 1)
769
769
  # @option opts [String] :sort_by variable name requested to sort by
770
- # @option opts [Array<String>] :expand variable name requested by expand list
770
+ # @option opts [Array<Object>] :expand variable name requested by expand list
771
771
  # @option opts [String] :next_page next page token
772
772
  # @option opts [String] :previous_page Previous page token
773
773
  # @return [OrphanRecordingListing]
@@ -782,7 +782,7 @@ module PureCloud
782
782
  # @option opts [Integer] :page_size The total page size requested
783
783
  # @option opts [Integer] :page_number The page number requested
784
784
  # @option opts [String] :sort_by variable name requested to sort by
785
- # @option opts [Array<String>] :expand variable name requested by expand list
785
+ # @option opts [Array<Object>] :expand variable name requested by expand list
786
786
  # @option opts [String] :next_page next page token
787
787
  # @option opts [String] :previous_page Previous page token
788
788
  # @return [Array<(OrphanRecordingListing, Fixnum, Hash)>] OrphanRecordingListing data, response status code and response headers