Skip to content

Commit f310649

Browse files
author
PureCloud Jenkins
committed
65.0.0
1 parent 501a556 commit f310649

390 files changed

Lines changed: 4269 additions & 3943 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ def __call_api(self, resource_path, method,
185185
header_params['Cookie'] = self.cookie
186186
if header_params:
187187
header_params = self.sanitize_for_serialization(header_params)
188-
header_params['purecloud-sdk'] = '64.0.2'
188+
header_params['purecloud-sdk'] = '65.0.0'
189189

190190
# path parameters
191191
if path_params:

build/PureCloudPlatformClientV2/apis/scim_api.py

Lines changed: 25 additions & 31 deletions
Large diffs are not rendered by default.

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,5 +249,5 @@ def to_debug_report(self):
249249
"OS: {env}\n"\
250250
"Python Version: {pyversion}\n"\
251251
"Version of the API: v2\n"\
252-
"SDK Package Version: 64.0.2".\
252+
"SDK Package Version: 65.0.0".\
253253
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/action_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def __init__(self):
4646
'total': 'int',
4747
'first_uri': 'str',
4848
'self_uri': 'str',
49-
'previous_uri': 'str',
5049
'next_uri': 'str',
50+
'previous_uri': 'str',
5151
'last_uri': 'str',
5252
'page_count': 'int'
5353
}
@@ -59,8 +59,8 @@ def __init__(self):
5959
'total': 'total',
6060
'first_uri': 'firstUri',
6161
'self_uri': 'selfUri',
62-
'previous_uri': 'previousUri',
6362
'next_uri': 'nextUri',
63+
'previous_uri': 'previousUri',
6464
'last_uri': 'lastUri',
6565
'page_count': 'pageCount'
6666
}
@@ -71,8 +71,8 @@ def __init__(self):
7171
self._total = None
7272
self._first_uri = None
7373
self._self_uri = None
74-
self._previous_uri = None
7574
self._next_uri = None
75+
self._previous_uri = None
7676
self._last_uri = None
7777
self._page_count = None
7878

@@ -215,50 +215,50 @@ def self_uri(self, self_uri):
215215
self._self_uri = self_uri
216216

217217
@property
218-
def previous_uri(self):
218+
def next_uri(self):
219219
"""
220-
Gets the previous_uri of this ActionEntityListing.
220+
Gets the next_uri of this ActionEntityListing.
221221
222222
223-
:return: The previous_uri of this ActionEntityListing.
223+
:return: The next_uri of this ActionEntityListing.
224224
:rtype: str
225225
"""
226-
return self._previous_uri
226+
return self._next_uri
227227

228-
@previous_uri.setter
229-
def previous_uri(self, previous_uri):
228+
@next_uri.setter
229+
def next_uri(self, next_uri):
230230
"""
231-
Sets the previous_uri of this ActionEntityListing.
231+
Sets the next_uri of this ActionEntityListing.
232232
233233
234-
:param previous_uri: The previous_uri of this ActionEntityListing.
234+
:param next_uri: The next_uri of this ActionEntityListing.
235235
:type: str
236236
"""
237237

238-
self._previous_uri = previous_uri
238+
self._next_uri = next_uri
239239

240240
@property
241-
def next_uri(self):
241+
def previous_uri(self):
242242
"""
243-
Gets the next_uri of this ActionEntityListing.
243+
Gets the previous_uri of this ActionEntityListing.
244244
245245
246-
:return: The next_uri of this ActionEntityListing.
246+
:return: The previous_uri of this ActionEntityListing.
247247
:rtype: str
248248
"""
249-
return self._next_uri
249+
return self._previous_uri
250250

251-
@next_uri.setter
252-
def next_uri(self, next_uri):
251+
@previous_uri.setter
252+
def previous_uri(self, previous_uri):
253253
"""
254-
Sets the next_uri of this ActionEntityListing.
254+
Sets the previous_uri of this ActionEntityListing.
255255
256256
257-
:param next_uri: The next_uri of this ActionEntityListing.
257+
:param previous_uri: The previous_uri of this ActionEntityListing.
258258
:type: str
259259
"""
260260

261-
self._next_uri = next_uri
261+
self._previous_uri = previous_uri
262262

263263
@property
264264
def last_uri(self):

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def __init__(self):
4646
'total': 'int',
4747
'first_uri': 'str',
4848
'self_uri': 'str',
49-
'previous_uri': 'str',
5049
'next_uri': 'str',
50+
'previous_uri': 'str',
5151
'last_uri': 'str',
5252
'page_count': 'int'
5353
}
@@ -59,8 +59,8 @@ def __init__(self):
5959
'total': 'total',
6060
'first_uri': 'firstUri',
6161
'self_uri': 'selfUri',
62-
'previous_uri': 'previousUri',
6362
'next_uri': 'nextUri',
63+
'previous_uri': 'previousUri',
6464
'last_uri': 'lastUri',
6565
'page_count': 'pageCount'
6666
}
@@ -71,8 +71,8 @@ def __init__(self):
7171
self._total = None
7272
self._first_uri = None
7373
self._self_uri = None
74-
self._previous_uri = None
7574
self._next_uri = None
75+
self._previous_uri = None
7676
self._last_uri = None
7777
self._page_count = None
7878

@@ -215,50 +215,50 @@ def self_uri(self, self_uri):
215215
self._self_uri = self_uri
216216

217217
@property
218-
def previous_uri(self):
218+
def next_uri(self):
219219
"""
220-
Gets the previous_uri of this AgentActivityEntityListing.
220+
Gets the next_uri of this AgentActivityEntityListing.
221221
222222
223-
:return: The previous_uri of this AgentActivityEntityListing.
223+
:return: The next_uri of this AgentActivityEntityListing.
224224
:rtype: str
225225
"""
226-
return self._previous_uri
226+
return self._next_uri
227227

228-
@previous_uri.setter
229-
def previous_uri(self, previous_uri):
228+
@next_uri.setter
229+
def next_uri(self, next_uri):
230230
"""
231-
Sets the previous_uri of this AgentActivityEntityListing.
231+
Sets the next_uri of this AgentActivityEntityListing.
232232
233233
234-
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
234+
:param next_uri: The next_uri of this AgentActivityEntityListing.
235235
:type: str
236236
"""
237237

238-
self._previous_uri = previous_uri
238+
self._next_uri = next_uri
239239

240240
@property
241-
def next_uri(self):
241+
def previous_uri(self):
242242
"""
243-
Gets the next_uri of this AgentActivityEntityListing.
243+
Gets the previous_uri of this AgentActivityEntityListing.
244244
245245
246-
:return: The next_uri of this AgentActivityEntityListing.
246+
:return: The previous_uri of this AgentActivityEntityListing.
247247
:rtype: str
248248
"""
249-
return self._next_uri
249+
return self._previous_uri
250250

251-
@next_uri.setter
252-
def next_uri(self, next_uri):
251+
@previous_uri.setter
252+
def previous_uri(self, previous_uri):
253253
"""
254-
Sets the next_uri of this AgentActivityEntityListing.
254+
Sets the previous_uri of this AgentActivityEntityListing.
255255
256256
257-
:param next_uri: The next_uri of this AgentActivityEntityListing.
257+
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
258258
:type: str
259259
"""
260260

261-
self._next_uri = next_uri
261+
self._previous_uri = previous_uri
262262

263263
@property
264264
def last_uri(self):

build/PureCloudPlatformClientV2/models/analytics_evaluation.py

Lines changed: 68 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,10 @@ def __init__(self):
4949
'context_id': 'str',
5050
'form_name': 'str',
5151
'calibration_id': 'str',
52-
'o_total_critical_score': 'int',
53-
'o_total_score': 'int'
52+
'rescored': 'bool',
53+
'deleted': 'bool',
54+
'o_total_score': 'int',
55+
'o_total_critical_score': 'int'
5456
}
5557

5658
self.attribute_map = {
@@ -63,8 +65,10 @@ def __init__(self):
6365
'context_id': 'contextId',
6466
'form_name': 'formName',
6567
'calibration_id': 'calibrationId',
66-
'o_total_critical_score': 'oTotalCriticalScore',
67-
'o_total_score': 'oTotalScore'
68+
'rescored': 'rescored',
69+
'deleted': 'deleted',
70+
'o_total_score': 'oTotalScore',
71+
'o_total_critical_score': 'oTotalCriticalScore'
6872
}
6973

7074
self._evaluation_id = None
@@ -76,8 +80,10 @@ def __init__(self):
7680
self._context_id = None
7781
self._form_name = None
7882
self._calibration_id = None
79-
self._o_total_critical_score = None
83+
self._rescored = None
84+
self._deleted = None
8085
self._o_total_score = None
86+
self._o_total_critical_score = None
8187

8288
@property
8389
def evaluation_id(self):
@@ -287,27 +293,50 @@ def calibration_id(self, calibration_id):
287293
self._calibration_id = calibration_id
288294

289295
@property
290-
def o_total_critical_score(self):
296+
def rescored(self):
291297
"""
292-
Gets the o_total_critical_score of this AnalyticsEvaluation.
298+
Gets the rescored of this AnalyticsEvaluation.
299+
Whether this evaluation has ever been rescored
293300
301+
:return: The rescored of this AnalyticsEvaluation.
302+
:rtype: bool
303+
"""
304+
return self._rescored
294305

295-
:return: The o_total_critical_score of this AnalyticsEvaluation.
296-
:rtype: int
306+
@rescored.setter
307+
def rescored(self, rescored):
297308
"""
298-
return self._o_total_critical_score
309+
Sets the rescored of this AnalyticsEvaluation.
310+
Whether this evaluation has ever been rescored
299311
300-
@o_total_critical_score.setter
301-
def o_total_critical_score(self, o_total_critical_score):
312+
:param rescored: The rescored of this AnalyticsEvaluation.
313+
:type: bool
302314
"""
303-
Sets the o_total_critical_score of this AnalyticsEvaluation.
315+
316+
self._rescored = rescored
304317

318+
@property
319+
def deleted(self):
320+
"""
321+
Gets the deleted of this AnalyticsEvaluation.
322+
Whether this evaluation has been deleted
305323
306-
:param o_total_critical_score: The o_total_critical_score of this AnalyticsEvaluation.
307-
:type: int
324+
:return: The deleted of this AnalyticsEvaluation.
325+
:rtype: bool
326+
"""
327+
return self._deleted
328+
329+
@deleted.setter
330+
def deleted(self, deleted):
331+
"""
332+
Sets the deleted of this AnalyticsEvaluation.
333+
Whether this evaluation has been deleted
334+
335+
:param deleted: The deleted of this AnalyticsEvaluation.
336+
:type: bool
308337
"""
309338

310-
self._o_total_critical_score = o_total_critical_score
339+
self._deleted = deleted
311340

312341
@property
313342
def o_total_score(self):
@@ -332,6 +361,29 @@ def o_total_score(self, o_total_score):
332361

333362
self._o_total_score = o_total_score
334363

364+
@property
365+
def o_total_critical_score(self):
366+
"""
367+
Gets the o_total_critical_score of this AnalyticsEvaluation.
368+
369+
370+
:return: The o_total_critical_score of this AnalyticsEvaluation.
371+
:rtype: int
372+
"""
373+
return self._o_total_critical_score
374+
375+
@o_total_critical_score.setter
376+
def o_total_critical_score(self, o_total_critical_score):
377+
"""
378+
Sets the o_total_critical_score of this AnalyticsEvaluation.
379+
380+
381+
:param o_total_critical_score: The o_total_critical_score of this AnalyticsEvaluation.
382+
:type: int
383+
"""
384+
385+
self._o_total_critical_score = o_total_critical_score
386+
335387
def to_dict(self):
336388
"""
337389
Returns the model properties as a dict

0 commit comments

Comments
 (0)