Skip to content

Commit 2f99a42

Browse files
author
InIn Devops
committed
4.0.1
1 parent 021094d commit 2f99a42

508 files changed

Lines changed: 5303 additions & 5768 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.0".\
241+
"SDK Package Version: 4.0.1".\
242242
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/activity_code.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def category(self, category):
162162
# print "Invalid value for category -> " + category
163163
self._category = "outdated_sdk_version"
164164
else:
165-
self._category = category.lower()
165+
self._category = category
166166

167167
@property
168168
def length_in_minutes(self):

build/PureCloudPlatformClientV2/models/acw_settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def wrapup_prompt(self, wrapup_prompt):
7575
# print "Invalid value for wrapup_prompt -> " + wrapup_prompt
7676
self._wrapup_prompt = "outdated_sdk_version"
7777
else:
78-
self._wrapup_prompt = wrapup_prompt.lower()
78+
self._wrapup_prompt = wrapup_prompt
7979

8080
@property
8181
def timeout_ms(self):

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 38 additions & 38 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-
'self_uri': 'str',
4645
'first_uri': 'str',
46+
'self_uri': 'str',
47+
'next_uri': 'str',
4748
'previous_uri': 'str',
4849
'last_uri': 'str',
49-
'next_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-
'self_uri': 'selfUri',
5958
'first_uri': 'firstUri',
59+
'self_uri': 'selfUri',
60+
'next_uri': 'nextUri',
6061
'previous_uri': 'previousUri',
6162
'last_uri': 'lastUri',
62-
'next_uri': 'nextUri',
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._self_uri = None
7170
self._first_uri = None
71+
self._self_uri = None
72+
self._next_uri = None
7273
self._previous_uri = None
7374
self._last_uri = None
74-
self._next_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -166,6 +166,29 @@ def total(self, total):
166166

167167
self._total = total
168168

169+
@property
170+
def first_uri(self):
171+
"""
172+
Gets the first_uri of this AgentActivityEntityListing.
173+
174+
175+
:return: The first_uri of this AgentActivityEntityListing.
176+
:rtype: str
177+
"""
178+
return self._first_uri
179+
180+
@first_uri.setter
181+
def first_uri(self, first_uri):
182+
"""
183+
Sets the first_uri of this AgentActivityEntityListing.
184+
185+
186+
:param first_uri: The first_uri of this AgentActivityEntityListing.
187+
:type: str
188+
"""
189+
190+
self._first_uri = first_uri
191+
169192
@property
170193
def self_uri(self):
171194
"""
@@ -190,27 +213,27 @@ def self_uri(self, self_uri):
190213
self._self_uri = self_uri
191214

192215
@property
193-
def first_uri(self):
216+
def next_uri(self):
194217
"""
195-
Gets the first_uri of this AgentActivityEntityListing.
218+
Gets the next_uri of this AgentActivityEntityListing.
196219
197220
198-
:return: The first_uri of this AgentActivityEntityListing.
221+
:return: The next_uri of this AgentActivityEntityListing.
199222
:rtype: str
200223
"""
201-
return self._first_uri
224+
return self._next_uri
202225

203-
@first_uri.setter
204-
def first_uri(self, first_uri):
226+
@next_uri.setter
227+
def next_uri(self, next_uri):
205228
"""
206-
Sets the first_uri of this AgentActivityEntityListing.
229+
Sets the next_uri of this AgentActivityEntityListing.
207230
208231
209-
:param first_uri: The first_uri of this AgentActivityEntityListing.
232+
:param next_uri: The next_uri of this AgentActivityEntityListing.
210233
:type: str
211234
"""
212235

213-
self._first_uri = first_uri
236+
self._next_uri = next_uri
214237

215238
@property
216239
def previous_uri(self):
@@ -258,29 +281,6 @@ def last_uri(self, last_uri):
258281

259282
self._last_uri = last_uri
260283

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

build/PureCloudPlatformClientV2/models/aggregate_metric_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def metric(self, metric):
7878
# print "Invalid value for metric -> " + metric
7979
self._metric = "outdated_sdk_version"
8080
else:
81-
self._metric = metric.lower()
81+
self._metric = metric
8282

8383
@property
8484
def qualifier(self):

build/PureCloudPlatformClientV2/models/aggregation_result.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def type(self, type):
8484
# print "Invalid value for type -> " + type
8585
self._type = "outdated_sdk_version"
8686
else:
87-
self._type = type.lower()
87+
self._type = type
8888

8989
@property
9090
def dimension(self):

build/PureCloudPlatformClientV2/models/analytics_conversation_segment.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ def disconnect_type(self, disconnect_type):
302302
# print "Invalid value for disconnect_type -> " + disconnect_type
303303
self._disconnect_type = "outdated_sdk_version"
304304
else:
305-
self._disconnect_type = disconnect_type.lower()
305+
self._disconnect_type = disconnect_type
306306

307307
@property
308308
def segment_type(self):
@@ -329,7 +329,7 @@ def segment_type(self, segment_type):
329329
# print "Invalid value for segment_type -> " + segment_type
330330
self._segment_type = "outdated_sdk_version"
331331
else:
332-
self._segment_type = segment_type.lower()
332+
self._segment_type = segment_type
333333

334334
@property
335335
def requested_routing_user_ids(self):

build/PureCloudPlatformClientV2/models/analytics_participant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ def purpose(self, purpose):
159159
# print "Invalid value for purpose -> " + purpose
160160
self._purpose = "outdated_sdk_version"
161161
else:
162-
self._purpose = purpose.lower()
162+
self._purpose = purpose
163163

164164
@property
165165
def external_contact_id(self):

build/PureCloudPlatformClientV2/models/analytics_property.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def property_type(self, property_type):
7878
# print "Invalid value for property_type -> " + property_type
7979
self._property_type = "outdated_sdk_version"
8080
else:
81-
self._property_type = property_type.lower()
81+
self._property_type = property_type
8282

8383
@property
8484
def pcProperty(self):

build/PureCloudPlatformClientV2/models/analytics_query_aggregation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def type(self, type):
8484
# print "Invalid value for type -> " + type
8585
self._type = "outdated_sdk_version"
8686
else:
87-
self._type = type.lower()
87+
self._type = type
8888

8989
@property
9090
def dimension(self):

0 commit comments

Comments
 (0)