Skip to content

Commit 8b0fe0f

Browse files
author
PureCloud Jenkins
committed
100.0.0
1 parent b3dd79d commit 8b0fe0f

374 files changed

Lines changed: 4349 additions & 4283 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'] = '99.0.0'
188+
header_params['purecloud-sdk'] = '100.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: 99.0.0".\
258+
"SDK Package Version: 100.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/action_target_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 ActionTargetListing.
243+
Gets the previous_uri of this ActionTargetListing.
244244
245245
246-
:return: The last_uri of this ActionTargetListing.
246+
:return: The previous_uri of this ActionTargetListing.
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 ActionTargetListing.
254+
Sets the previous_uri of this ActionTargetListing.
255255
256256
257-
:param last_uri: The last_uri of this ActionTargetListing.
257+
:param previous_uri: The previous_uri of this ActionTargetListing.
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 ActionTargetListing.
266+
Gets the last_uri of this ActionTargetListing.
267267
268268
269-
:return: The previous_uri of this ActionTargetListing.
269+
:return: The last_uri of this ActionTargetListing.
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 ActionTargetListing.
277+
Sets the last_uri of this ActionTargetListing.
278278
279279
280-
:param previous_uri: The previous_uri of this ActionTargetListing.
280+
:param last_uri: The last_uri of this ActionTargetListing.
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):

0 commit comments

Comments
 (0)