Skip to content

Commit c6863ad

Browse files
author
InIn Devops
committed
4.0.2
1 parent 2f99a42 commit c6863ad

246 files changed

Lines changed: 5297 additions & 5297 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/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,5 +238,5 @@ def to_debug_report(self):
238238
"OS: {env}\n"\
239239
"Python Version: {pyversion}\n"\
240240
"Version of the API: v2\n"\
241-
"SDK Package Version: 4.0.1".\
241+
"SDK Package Version: 4.0.2".\
242242
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ def __init__(self):
4242
'page_size': 'int',
4343
'page_number': 'int',
4444
'total': 'int',
45-
'first_uri': 'str',
4645
'self_uri': 'str',
46+
'first_uri': 'str',
4747
'next_uri': 'str',
48-
'previous_uri': 'str',
4948
'last_uri': 'str',
49+
'previous_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -55,23 +55,23 @@ def __init__(self):
5555
'page_size': 'pageSize',
5656
'page_number': 'pageNumber',
5757
'total': 'total',
58-
'first_uri': 'firstUri',
5958
'self_uri': 'selfUri',
59+
'first_uri': 'firstUri',
6060
'next_uri': 'nextUri',
61-
'previous_uri': 'previousUri',
6261
'last_uri': 'lastUri',
62+
'previous_uri': 'previousUri',
6363
'page_count': 'pageCount'
6464
}
6565

6666
self._entities = None
6767
self._page_size = None
6868
self._page_number = None
6969
self._total = None
70-
self._first_uri = None
7170
self._self_uri = None
71+
self._first_uri = None
7272
self._next_uri = None
73-
self._previous_uri = None
7473
self._last_uri = None
74+
self._previous_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -167,50 +167,50 @@ def total(self, total):
167167
self._total = total
168168

169169
@property
170-
def first_uri(self):
170+
def self_uri(self):
171171
"""
172-
Gets the first_uri of this AgentActivityEntityListing.
172+
Gets the self_uri of this AgentActivityEntityListing.
173173
174174
175-
:return: The first_uri of this AgentActivityEntityListing.
175+
:return: The self_uri of this AgentActivityEntityListing.
176176
:rtype: str
177177
"""
178-
return self._first_uri
178+
return self._self_uri
179179

180-
@first_uri.setter
181-
def first_uri(self, first_uri):
180+
@self_uri.setter
181+
def self_uri(self, self_uri):
182182
"""
183-
Sets the first_uri of this AgentActivityEntityListing.
183+
Sets the self_uri of this AgentActivityEntityListing.
184184
185185
186-
:param first_uri: The first_uri of this AgentActivityEntityListing.
186+
:param self_uri: The self_uri of this AgentActivityEntityListing.
187187
:type: str
188188
"""
189189

190-
self._first_uri = first_uri
190+
self._self_uri = self_uri
191191

192192
@property
193-
def self_uri(self):
193+
def first_uri(self):
194194
"""
195-
Gets the self_uri of this AgentActivityEntityListing.
195+
Gets the first_uri of this AgentActivityEntityListing.
196196
197197
198-
:return: The self_uri of this AgentActivityEntityListing.
198+
:return: The first_uri of this AgentActivityEntityListing.
199199
:rtype: str
200200
"""
201-
return self._self_uri
201+
return self._first_uri
202202

203-
@self_uri.setter
204-
def self_uri(self, self_uri):
203+
@first_uri.setter
204+
def first_uri(self, first_uri):
205205
"""
206-
Sets the self_uri of this AgentActivityEntityListing.
206+
Sets the first_uri of this AgentActivityEntityListing.
207207
208208
209-
:param self_uri: The self_uri of this AgentActivityEntityListing.
209+
:param first_uri: The first_uri of this AgentActivityEntityListing.
210210
:type: str
211211
"""
212212

213-
self._self_uri = self_uri
213+
self._first_uri = first_uri
214214

215215
@property
216216
def next_uri(self):
@@ -236,50 +236,50 @@ def next_uri(self, next_uri):
236236
self._next_uri = next_uri
237237

238238
@property
239-
def previous_uri(self):
239+
def last_uri(self):
240240
"""
241-
Gets the previous_uri of this AgentActivityEntityListing.
241+
Gets the last_uri of this AgentActivityEntityListing.
242242
243243
244-
:return: The previous_uri of this AgentActivityEntityListing.
244+
:return: The last_uri of this AgentActivityEntityListing.
245245
:rtype: str
246246
"""
247-
return self._previous_uri
247+
return self._last_uri
248248

249-
@previous_uri.setter
250-
def previous_uri(self, previous_uri):
249+
@last_uri.setter
250+
def last_uri(self, last_uri):
251251
"""
252-
Sets the previous_uri of this AgentActivityEntityListing.
252+
Sets the last_uri of this AgentActivityEntityListing.
253253
254254
255-
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
255+
:param last_uri: The last_uri of this AgentActivityEntityListing.
256256
:type: str
257257
"""
258258

259-
self._previous_uri = previous_uri
259+
self._last_uri = last_uri
260260

261261
@property
262-
def last_uri(self):
262+
def previous_uri(self):
263263
"""
264-
Gets the last_uri of this AgentActivityEntityListing.
264+
Gets the previous_uri of this AgentActivityEntityListing.
265265
266266
267-
:return: The last_uri of this AgentActivityEntityListing.
267+
:return: The previous_uri of this AgentActivityEntityListing.
268268
:rtype: str
269269
"""
270-
return self._last_uri
270+
return self._previous_uri
271271

272-
@last_uri.setter
273-
def last_uri(self, last_uri):
272+
@previous_uri.setter
273+
def previous_uri(self, previous_uri):
274274
"""
275-
Sets the last_uri of this AgentActivityEntityListing.
275+
Sets the previous_uri of this AgentActivityEntityListing.
276276
277277
278-
:param last_uri: The last_uri of this AgentActivityEntityListing.
278+
:param previous_uri: The previous_uri of this AgentActivityEntityListing.
279279
:type: str
280280
"""
281281

282-
self._last_uri = last_uri
282+
self._previous_uri = previous_uri
283283

284284
@property
285285
def page_count(self):

build/PureCloudPlatformClientV2/models/attempt_limits_entity_listing.py

Lines changed: 42 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ def __init__(self):
4242
'page_size': 'int',
4343
'page_number': 'int',
4444
'total': 'int',
45-
'first_uri': 'str',
4645
'self_uri': 'str',
46+
'first_uri': 'str',
4747
'next_uri': 'str',
48-
'previous_uri': 'str',
4948
'last_uri': 'str',
49+
'previous_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -55,23 +55,23 @@ def __init__(self):
5555
'page_size': 'pageSize',
5656
'page_number': 'pageNumber',
5757
'total': 'total',
58-
'first_uri': 'firstUri',
5958
'self_uri': 'selfUri',
59+
'first_uri': 'firstUri',
6060
'next_uri': 'nextUri',
61-
'previous_uri': 'previousUri',
6261
'last_uri': 'lastUri',
62+
'previous_uri': 'previousUri',
6363
'page_count': 'pageCount'
6464
}
6565

6666
self._entities = None
6767
self._page_size = None
6868
self._page_number = None
6969
self._total = None
70-
self._first_uri = None
7170
self._self_uri = None
71+
self._first_uri = None
7272
self._next_uri = None
73-
self._previous_uri = None
7473
self._last_uri = None
74+
self._previous_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -167,50 +167,50 @@ def total(self, total):
167167
self._total = total
168168

169169
@property
170-
def first_uri(self):
170+
def self_uri(self):
171171
"""
172-
Gets the first_uri of this AttemptLimitsEntityListing.
172+
Gets the self_uri of this AttemptLimitsEntityListing.
173173
174174
175-
:return: The first_uri of this AttemptLimitsEntityListing.
175+
:return: The self_uri of this AttemptLimitsEntityListing.
176176
:rtype: str
177177
"""
178-
return self._first_uri
178+
return self._self_uri
179179

180-
@first_uri.setter
181-
def first_uri(self, first_uri):
180+
@self_uri.setter
181+
def self_uri(self, self_uri):
182182
"""
183-
Sets the first_uri of this AttemptLimitsEntityListing.
183+
Sets the self_uri of this AttemptLimitsEntityListing.
184184
185185
186-
:param first_uri: The first_uri of this AttemptLimitsEntityListing.
186+
:param self_uri: The self_uri of this AttemptLimitsEntityListing.
187187
:type: str
188188
"""
189189

190-
self._first_uri = first_uri
190+
self._self_uri = self_uri
191191

192192
@property
193-
def self_uri(self):
193+
def first_uri(self):
194194
"""
195-
Gets the self_uri of this AttemptLimitsEntityListing.
195+
Gets the first_uri of this AttemptLimitsEntityListing.
196196
197197
198-
:return: The self_uri of this AttemptLimitsEntityListing.
198+
:return: The first_uri of this AttemptLimitsEntityListing.
199199
:rtype: str
200200
"""
201-
return self._self_uri
201+
return self._first_uri
202202

203-
@self_uri.setter
204-
def self_uri(self, self_uri):
203+
@first_uri.setter
204+
def first_uri(self, first_uri):
205205
"""
206-
Sets the self_uri of this AttemptLimitsEntityListing.
206+
Sets the first_uri of this AttemptLimitsEntityListing.
207207
208208
209-
:param self_uri: The self_uri of this AttemptLimitsEntityListing.
209+
:param first_uri: The first_uri of this AttemptLimitsEntityListing.
210210
:type: str
211211
"""
212212

213-
self._self_uri = self_uri
213+
self._first_uri = first_uri
214214

215215
@property
216216
def next_uri(self):
@@ -236,50 +236,50 @@ def next_uri(self, next_uri):
236236
self._next_uri = next_uri
237237

238238
@property
239-
def previous_uri(self):
239+
def last_uri(self):
240240
"""
241-
Gets the previous_uri of this AttemptLimitsEntityListing.
241+
Gets the last_uri of this AttemptLimitsEntityListing.
242242
243243
244-
:return: The previous_uri of this AttemptLimitsEntityListing.
244+
:return: The last_uri of this AttemptLimitsEntityListing.
245245
:rtype: str
246246
"""
247-
return self._previous_uri
247+
return self._last_uri
248248

249-
@previous_uri.setter
250-
def previous_uri(self, previous_uri):
249+
@last_uri.setter
250+
def last_uri(self, last_uri):
251251
"""
252-
Sets the previous_uri of this AttemptLimitsEntityListing.
252+
Sets the last_uri of this AttemptLimitsEntityListing.
253253
254254
255-
:param previous_uri: The previous_uri of this AttemptLimitsEntityListing.
255+
:param last_uri: The last_uri of this AttemptLimitsEntityListing.
256256
:type: str
257257
"""
258258

259-
self._previous_uri = previous_uri
259+
self._last_uri = last_uri
260260

261261
@property
262-
def last_uri(self):
262+
def previous_uri(self):
263263
"""
264-
Gets the last_uri of this AttemptLimitsEntityListing.
264+
Gets the previous_uri of this AttemptLimitsEntityListing.
265265
266266
267-
:return: The last_uri of this AttemptLimitsEntityListing.
267+
:return: The previous_uri of this AttemptLimitsEntityListing.
268268
:rtype: str
269269
"""
270-
return self._last_uri
270+
return self._previous_uri
271271

272-
@last_uri.setter
273-
def last_uri(self, last_uri):
272+
@previous_uri.setter
273+
def previous_uri(self, previous_uri):
274274
"""
275-
Sets the last_uri of this AttemptLimitsEntityListing.
275+
Sets the previous_uri of this AttemptLimitsEntityListing.
276276
277277
278-
:param last_uri: The last_uri of this AttemptLimitsEntityListing.
278+
:param previous_uri: The previous_uri of this AttemptLimitsEntityListing.
279279
:type: str
280280
"""
281281

282-
self._last_uri = last_uri
282+
self._previous_uri = previous_uri
283283

284284
@property
285285
def page_count(self):

0 commit comments

Comments
 (0)