Skip to content

Commit df43f1d

Browse files
author
PureCloud Jenkins
committed
87.0.0
1 parent a274a99 commit df43f1d

360 files changed

Lines changed: 3896 additions & 4119 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'] = '86.0.0'
188+
header_params['purecloud-sdk'] = '87.0.0'
189189

190190
# path parameters
191191
if path_params:

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,5 +255,5 @@ def to_debug_report(self):
255255
"OS: {env}\n"\
256256
"Python Version: {pyversion}\n"\
257257
"Version of the API: v2\n"\
258-
"SDK Package Version: 86.0.0".\
258+
"SDK Package Version: 87.0.0".\
259259
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
@@ -47,8 +47,8 @@ def __init__(self):
4747
'first_uri': 'str',
4848
'self_uri': 'str',
4949
'next_uri': 'str',
50-
'last_uri': 'str',
5150
'previous_uri': 'str',
51+
'last_uri': 'str',
5252
'page_count': 'int'
5353
}
5454

@@ -60,8 +60,8 @@ def __init__(self):
6060
'first_uri': 'firstUri',
6161
'self_uri': 'selfUri',
6262
'next_uri': 'nextUri',
63-
'last_uri': 'lastUri',
6463
'previous_uri': 'previousUri',
64+
'last_uri': 'lastUri',
6565
'page_count': 'pageCount'
6666
}
6767

@@ -72,8 +72,8 @@ def __init__(self):
7272
self._first_uri = None
7373
self._self_uri = None
7474
self._next_uri = None
75-
self._last_uri = None
7675
self._previous_uri = None
76+
self._last_uri = None
7777
self._page_count = None
7878

7979
@property
@@ -238,50 +238,50 @@ def next_uri(self, next_uri):
238238
self._next_uri = next_uri
239239

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

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

261-
self._last_uri = last_uri
261+
self._previous_uri = previous_uri
262262

263263
@property
264-
def previous_uri(self):
264+
def last_uri(self):
265265
"""
266-
Gets the previous_uri of this ActionEntityListing.
266+
Gets the last_uri of this ActionEntityListing.
267267
268268
269-
:return: The previous_uri of this ActionEntityListing.
269+
:return: The last_uri of this ActionEntityListing.
270270
:rtype: str
271271
"""
272-
return self._previous_uri
272+
return self._last_uri
273273

274-
@previous_uri.setter
275-
def previous_uri(self, previous_uri):
274+
@last_uri.setter
275+
def last_uri(self, last_uri):
276276
"""
277-
Sets the previous_uri of this ActionEntityListing.
277+
Sets the last_uri of this ActionEntityListing.
278278
279279
280-
:param previous_uri: The previous_uri of this ActionEntityListing.
280+
:param last_uri: The last_uri of this ActionEntityListing.
281281
:type: str
282282
"""
283283

284-
self._previous_uri = previous_uri
284+
self._last_uri = last_uri
285285

286286
@property
287287
def page_count(self):

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ def __init__(self):
4747
'first_uri': 'str',
4848
'self_uri': 'str',
4949
'next_uri': 'str',
50-
'last_uri': 'str',
5150
'previous_uri': 'str',
51+
'last_uri': 'str',
5252
'page_count': 'int'
5353
}
5454

@@ -60,8 +60,8 @@ def __init__(self):
6060
'first_uri': 'firstUri',
6161
'self_uri': 'selfUri',
6262
'next_uri': 'nextUri',
63-
'last_uri': 'lastUri',
6463
'previous_uri': 'previousUri',
64+
'last_uri': 'lastUri',
6565
'page_count': 'pageCount'
6666
}
6767

@@ -72,8 +72,8 @@ def __init__(self):
7272
self._first_uri = None
7373
self._self_uri = None
7474
self._next_uri = None
75-
self._last_uri = None
7675
self._previous_uri = None
76+
self._last_uri = None
7777
self._page_count = None
7878

7979
@property
@@ -238,50 +238,50 @@ def next_uri(self, next_uri):
238238
self._next_uri = next_uri
239239

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

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

261-
self._last_uri = last_uri
261+
self._previous_uri = previous_uri
262262

263263
@property
264-
def previous_uri(self):
264+
def last_uri(self):
265265
"""
266-
Gets the previous_uri of this AgentActivityEntityListing.
266+
Gets the last_uri of this AgentActivityEntityListing.
267267
268268
269-
:return: The previous_uri of this AgentActivityEntityListing.
269+
:return: The last_uri of this AgentActivityEntityListing.
270270
:rtype: str
271271
"""
272-
return self._previous_uri
272+
return self._last_uri
273273

274-
@previous_uri.setter
275-
def previous_uri(self, previous_uri):
274+
@last_uri.setter
275+
def last_uri(self, last_uri):
276276
"""
277-
Sets the previous_uri of this AgentActivityEntityListing.
277+
Sets the last_uri of this AgentActivityEntityListing.
278278
279279
280-
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
280+
:param last_uri: The last_uri of this AgentActivityEntityListing.
281281
:type: str
282282
"""
283283

284-
self._previous_uri = previous_uri
284+
self._last_uri = last_uri
285285

286286
@property
287287
def page_count(self):

build/PureCloudPlatformClientV2/models/analytics_evaluation.py

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ def __init__(self):
5151
'calibration_id': 'str',
5252
'rescored': 'bool',
5353
'deleted': 'bool',
54-
'o_total_score': 'int',
55-
'o_total_critical_score': 'int'
54+
'o_total_critical_score': 'int',
55+
'o_total_score': 'int'
5656
}
5757

5858
self.attribute_map = {
@@ -67,8 +67,8 @@ def __init__(self):
6767
'calibration_id': 'calibrationId',
6868
'rescored': 'rescored',
6969
'deleted': 'deleted',
70-
'o_total_score': 'oTotalScore',
71-
'o_total_critical_score': 'oTotalCriticalScore'
70+
'o_total_critical_score': 'oTotalCriticalScore',
71+
'o_total_score': 'oTotalScore'
7272
}
7373

7474
self._evaluation_id = None
@@ -82,8 +82,8 @@ def __init__(self):
8282
self._calibration_id = None
8383
self._rescored = None
8484
self._deleted = None
85-
self._o_total_score = None
8685
self._o_total_critical_score = None
86+
self._o_total_score = None
8787

8888
@property
8989
def evaluation_id(self):
@@ -339,50 +339,50 @@ def deleted(self, deleted):
339339
self._deleted = deleted
340340

341341
@property
342-
def o_total_score(self):
342+
def o_total_critical_score(self):
343343
"""
344-
Gets the o_total_score of this AnalyticsEvaluation.
344+
Gets the o_total_critical_score of this AnalyticsEvaluation.
345345
346346
347-
:return: The o_total_score of this AnalyticsEvaluation.
347+
:return: The o_total_critical_score of this AnalyticsEvaluation.
348348
:rtype: int
349349
"""
350-
return self._o_total_score
350+
return self._o_total_critical_score
351351

352-
@o_total_score.setter
353-
def o_total_score(self, o_total_score):
352+
@o_total_critical_score.setter
353+
def o_total_critical_score(self, o_total_critical_score):
354354
"""
355-
Sets the o_total_score of this AnalyticsEvaluation.
355+
Sets the o_total_critical_score of this AnalyticsEvaluation.
356356
357357
358-
:param o_total_score: The o_total_score of this AnalyticsEvaluation.
358+
:param o_total_critical_score: The o_total_critical_score of this AnalyticsEvaluation.
359359
:type: int
360360
"""
361361

362-
self._o_total_score = o_total_score
362+
self._o_total_critical_score = o_total_critical_score
363363

364364
@property
365-
def o_total_critical_score(self):
365+
def o_total_score(self):
366366
"""
367-
Gets the o_total_critical_score of this AnalyticsEvaluation.
367+
Gets the o_total_score of this AnalyticsEvaluation.
368368
369369
370-
:return: The o_total_critical_score of this AnalyticsEvaluation.
370+
:return: The o_total_score of this AnalyticsEvaluation.
371371
:rtype: int
372372
"""
373-
return self._o_total_critical_score
373+
return self._o_total_score
374374

375-
@o_total_critical_score.setter
376-
def o_total_critical_score(self, o_total_critical_score):
375+
@o_total_score.setter
376+
def o_total_score(self, o_total_score):
377377
"""
378-
Sets the o_total_critical_score of this AnalyticsEvaluation.
378+
Sets the o_total_score of this AnalyticsEvaluation.
379379
380380
381-
:param o_total_critical_score: The o_total_critical_score of this AnalyticsEvaluation.
381+
:param o_total_score: The o_total_score of this AnalyticsEvaluation.
382382
:type: int
383383
"""
384384

385-
self._o_total_critical_score = o_total_critical_score
385+
self._o_total_score = o_total_score
386386

387387
def to_dict(self):
388388
"""

0 commit comments

Comments
 (0)