Skip to content

Commit b4eacaf

Browse files
author
PureCloud Jenkins
committed
66.0.0
1 parent f310649 commit b4eacaf

358 files changed

Lines changed: 6160 additions & 4588 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/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,7 @@
10231023
from .models.photo import Photo
10241024
from .models.physical_interface_entity_listing import PhysicalInterfaceEntityListing
10251025
from .models.ping_identity import PingIdentity
1026+
from .models.planning_period_settings import PlanningPeriodSettings
10261027
from .models.policy import Policy
10271028
from .models.policy_actions import PolicyActions
10281029
from .models.policy_conditions import PolicyConditions

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'] = '65.0.0'
188+
header_params['purecloud-sdk'] = '66.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
@@ -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: 65.0.0".\
252+
"SDK Package Version: 66.0.0".\
253253
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,7 @@
10231023
from .photo import Photo
10241024
from .physical_interface_entity_listing import PhysicalInterfaceEntityListing
10251025
from .ping_identity import PingIdentity
1026+
from .planning_period_settings import PlanningPeriodSettings
10261027
from .policy import Policy
10271028
from .policy_actions import PolicyActions
10281029
from .policy_conditions import PolicyConditions

build/PureCloudPlatformClientV2/models/action_entity_listing.py

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ def __init__(self):
4646
'total': 'int',
4747
'first_uri': 'str',
4848
'self_uri': 'str',
49+
'last_uri': 'str',
4950
'next_uri': 'str',
5051
'previous_uri': 'str',
51-
'last_uri': 'str',
5252
'page_count': 'int'
5353
}
5454

@@ -59,9 +59,9 @@ def __init__(self):
5959
'total': 'total',
6060
'first_uri': 'firstUri',
6161
'self_uri': 'selfUri',
62+
'last_uri': 'lastUri',
6263
'next_uri': 'nextUri',
6364
'previous_uri': 'previousUri',
64-
'last_uri': 'lastUri',
6565
'page_count': 'pageCount'
6666
}
6767

@@ -71,9 +71,9 @@ def __init__(self):
7171
self._total = None
7272
self._first_uri = None
7373
self._self_uri = None
74+
self._last_uri = None
7475
self._next_uri = None
7576
self._previous_uri = None
76-
self._last_uri = None
7777
self._page_count = None
7878

7979
@property
@@ -214,6 +214,29 @@ def self_uri(self, self_uri):
214214

215215
self._self_uri = self_uri
216216

217+
@property
218+
def last_uri(self):
219+
"""
220+
Gets the last_uri of this ActionEntityListing.
221+
222+
223+
:return: The last_uri of this ActionEntityListing.
224+
:rtype: str
225+
"""
226+
return self._last_uri
227+
228+
@last_uri.setter
229+
def last_uri(self, last_uri):
230+
"""
231+
Sets the last_uri of this ActionEntityListing.
232+
233+
234+
:param last_uri: The last_uri of this ActionEntityListing.
235+
:type: str
236+
"""
237+
238+
self._last_uri = last_uri
239+
217240
@property
218241
def next_uri(self):
219242
"""
@@ -260,29 +283,6 @@ def previous_uri(self, previous_uri):
260283

261284
self._previous_uri = previous_uri
262285

263-
@property
264-
def last_uri(self):
265-
"""
266-
Gets the last_uri of this ActionEntityListing.
267-
268-
269-
:return: The last_uri of this ActionEntityListing.
270-
:rtype: str
271-
"""
272-
return self._last_uri
273-
274-
@last_uri.setter
275-
def last_uri(self, last_uri):
276-
"""
277-
Sets the last_uri of this ActionEntityListing.
278-
279-
280-
:param last_uri: The last_uri of this ActionEntityListing.
281-
:type: str
282-
"""
283-
284-
self._last_uri = last_uri
285-
286286
@property
287287
def page_count(self):
288288
"""

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ def __init__(self):
4646
'total': 'int',
4747
'first_uri': 'str',
4848
'self_uri': 'str',
49+
'last_uri': 'str',
4950
'next_uri': 'str',
5051
'previous_uri': 'str',
51-
'last_uri': 'str',
5252
'page_count': 'int'
5353
}
5454

@@ -59,9 +59,9 @@ def __init__(self):
5959
'total': 'total',
6060
'first_uri': 'firstUri',
6161
'self_uri': 'selfUri',
62+
'last_uri': 'lastUri',
6263
'next_uri': 'nextUri',
6364
'previous_uri': 'previousUri',
64-
'last_uri': 'lastUri',
6565
'page_count': 'pageCount'
6666
}
6767

@@ -71,9 +71,9 @@ def __init__(self):
7171
self._total = None
7272
self._first_uri = None
7373
self._self_uri = None
74+
self._last_uri = None
7475
self._next_uri = None
7576
self._previous_uri = None
76-
self._last_uri = None
7777
self._page_count = None
7878

7979
@property
@@ -214,6 +214,29 @@ def self_uri(self, self_uri):
214214

215215
self._self_uri = self_uri
216216

217+
@property
218+
def last_uri(self):
219+
"""
220+
Gets the last_uri of this AgentActivityEntityListing.
221+
222+
223+
:return: The last_uri of this AgentActivityEntityListing.
224+
:rtype: str
225+
"""
226+
return self._last_uri
227+
228+
@last_uri.setter
229+
def last_uri(self, last_uri):
230+
"""
231+
Sets the last_uri of this AgentActivityEntityListing.
232+
233+
234+
:param last_uri: The last_uri of this AgentActivityEntityListing.
235+
:type: str
236+
"""
237+
238+
self._last_uri = last_uri
239+
217240
@property
218241
def next_uri(self):
219242
"""
@@ -260,29 +283,6 @@ def previous_uri(self, previous_uri):
260283

261284
self._previous_uri = previous_uri
262285

263-
@property
264-
def last_uri(self):
265-
"""
266-
Gets the last_uri of this AgentActivityEntityListing.
267-
268-
269-
:return: The last_uri of this AgentActivityEntityListing.
270-
:rtype: str
271-
"""
272-
return self._last_uri
273-
274-
@last_uri.setter
275-
def last_uri(self, last_uri):
276-
"""
277-
Sets the last_uri of this AgentActivityEntityListing.
278-
279-
280-
:param last_uri: The last_uri of this AgentActivityEntityListing.
281-
:type: str
282-
"""
283-
284-
self._last_uri = last_uri
285-
286286
@property
287287
def page_count(self):
288288
"""

build/PureCloudPlatformClientV2/models/attempt_limits_entity_listing.py

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ def __init__(self):
4646
'total': 'int',
4747
'first_uri': 'str',
4848
'self_uri': 'str',
49+
'last_uri': 'str',
4950
'next_uri': 'str',
5051
'previous_uri': 'str',
51-
'last_uri': 'str',
5252
'page_count': 'int'
5353
}
5454

@@ -59,9 +59,9 @@ def __init__(self):
5959
'total': 'total',
6060
'first_uri': 'firstUri',
6161
'self_uri': 'selfUri',
62+
'last_uri': 'lastUri',
6263
'next_uri': 'nextUri',
6364
'previous_uri': 'previousUri',
64-
'last_uri': 'lastUri',
6565
'page_count': 'pageCount'
6666
}
6767

@@ -71,9 +71,9 @@ def __init__(self):
7171
self._total = None
7272
self._first_uri = None
7373
self._self_uri = None
74+
self._last_uri = None
7475
self._next_uri = None
7576
self._previous_uri = None
76-
self._last_uri = None
7777
self._page_count = None
7878

7979
@property
@@ -214,6 +214,29 @@ def self_uri(self, self_uri):
214214

215215
self._self_uri = self_uri
216216

217+
@property
218+
def last_uri(self):
219+
"""
220+
Gets the last_uri of this AttemptLimitsEntityListing.
221+
222+
223+
:return: The last_uri of this AttemptLimitsEntityListing.
224+
:rtype: str
225+
"""
226+
return self._last_uri
227+
228+
@last_uri.setter
229+
def last_uri(self, last_uri):
230+
"""
231+
Sets the last_uri of this AttemptLimitsEntityListing.
232+
233+
234+
:param last_uri: The last_uri of this AttemptLimitsEntityListing.
235+
:type: str
236+
"""
237+
238+
self._last_uri = last_uri
239+
217240
@property
218241
def next_uri(self):
219242
"""
@@ -260,29 +283,6 @@ def previous_uri(self, previous_uri):
260283

261284
self._previous_uri = previous_uri
262285

263-
@property
264-
def last_uri(self):
265-
"""
266-
Gets the last_uri of this AttemptLimitsEntityListing.
267-
268-
269-
:return: The last_uri of this AttemptLimitsEntityListing.
270-
:rtype: str
271-
"""
272-
return self._last_uri
273-
274-
@last_uri.setter
275-
def last_uri(self, last_uri):
276-
"""
277-
Sets the last_uri of this AttemptLimitsEntityListing.
278-
279-
280-
:param last_uri: The last_uri of this AttemptLimitsEntityListing.
281-
:type: str
282-
"""
283-
284-
self._last_uri = last_uri
285-
286286
@property
287287
def page_count(self):
288288
"""

0 commit comments

Comments
 (0)