Skip to content

Commit 2902466

Browse files
author
PureCloud Jenkins
committed
38.0.0
1 parent df0283c commit 2902466

322 files changed

Lines changed: 4394 additions & 4380 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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,8 @@
525525
from .models.evaluation_form import EvaluationForm
526526
from .models.evaluation_form_and_scoring_set import EvaluationFormAndScoringSet
527527
from .models.evaluation_form_entity_listing import EvaluationFormEntityListing
528+
from .models.evaluation_question_group_score import EvaluationQuestionGroupScore
529+
from .models.evaluation_question_score import EvaluationQuestionScore
528530
from .models.evaluation_scoring_set import EvaluationScoringSet
529531
from .models.evaluator_activity import EvaluatorActivity
530532
from .models.evaluator_activity_entity_listing import EvaluatorActivityEntityListing
@@ -887,8 +889,6 @@
887889
from .models.query_results import QueryResults
888890
from .models.question import Question
889891
from .models.question_group import QuestionGroup
890-
from .models.question_group_score import QuestionGroupScore
891-
from .models.question_score import QuestionScore
892892
from .models.queue import Queue
893893
from .models.queue_email_address import QueueEmailAddress
894894
from .models.queue_entity_listing import QueueEntityListing

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def __call_api(self, resource_path, method,
112112
header_params['Cookie'] = self.cookie
113113
if header_params:
114114
header_params = self.sanitize_for_serialization(header_params)
115-
header_params['purecloud-sdk'] = '37.0.0'
115+
header_params['purecloud-sdk'] = '38.0.0'
116116

117117
# path parameters
118118
if path_params:

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: 37.0.0".\
241+
"SDK Package Version: 38.0.0".\
242242
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -525,6 +525,8 @@
525525
from .evaluation_form import EvaluationForm
526526
from .evaluation_form_and_scoring_set import EvaluationFormAndScoringSet
527527
from .evaluation_form_entity_listing import EvaluationFormEntityListing
528+
from .evaluation_question_group_score import EvaluationQuestionGroupScore
529+
from .evaluation_question_score import EvaluationQuestionScore
528530
from .evaluation_scoring_set import EvaluationScoringSet
529531
from .evaluator_activity import EvaluatorActivity
530532
from .evaluator_activity_entity_listing import EvaluatorActivityEntityListing
@@ -887,8 +889,6 @@
887889
from .query_results import QueryResults
888890
from .question import Question
889891
from .question_group import QuestionGroup
890-
from .question_group_score import QuestionGroupScore
891-
from .question_score import QuestionScore
892892
from .queue import Queue
893893
from .queue_email_address import QueueEmailAddress
894894
from .queue_entity_listing import QueueEntityListing

build/PureCloudPlatformClientV2/models/action_entity_listing.py

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ def __init__(self):
4343
'page_number': 'int',
4444
'total': 'int',
4545
'self_uri': 'str',
46+
'first_uri': 'str',
4647
'previous_uri': 'str',
4748
'next_uri': 'str',
4849
'last_uri': 'str',
49-
'first_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -56,10 +56,10 @@ def __init__(self):
5656
'page_number': 'pageNumber',
5757
'total': 'total',
5858
'self_uri': 'selfUri',
59+
'first_uri': 'firstUri',
5960
'previous_uri': 'previousUri',
6061
'next_uri': 'nextUri',
6162
'last_uri': 'lastUri',
62-
'first_uri': 'firstUri',
6363
'page_count': 'pageCount'
6464
}
6565

@@ -68,10 +68,10 @@ def __init__(self):
6868
self._page_number = None
6969
self._total = None
7070
self._self_uri = None
71+
self._first_uri = None
7172
self._previous_uri = None
7273
self._next_uri = None
7374
self._last_uri = None
74-
self._first_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -189,6 +189,29 @@ def self_uri(self, self_uri):
189189

190190
self._self_uri = self_uri
191191

192+
@property
193+
def first_uri(self):
194+
"""
195+
Gets the first_uri of this ActionEntityListing.
196+
197+
198+
:return: The first_uri of this ActionEntityListing.
199+
:rtype: str
200+
"""
201+
return self._first_uri
202+
203+
@first_uri.setter
204+
def first_uri(self, first_uri):
205+
"""
206+
Sets the first_uri of this ActionEntityListing.
207+
208+
209+
:param first_uri: The first_uri of this ActionEntityListing.
210+
:type: str
211+
"""
212+
213+
self._first_uri = first_uri
214+
192215
@property
193216
def previous_uri(self):
194217
"""
@@ -258,29 +281,6 @@ def last_uri(self, last_uri):
258281

259282
self._last_uri = last_uri
260283

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

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ def __init__(self):
4343
'page_number': 'int',
4444
'total': 'int',
4545
'self_uri': 'str',
46+
'first_uri': 'str',
4647
'previous_uri': 'str',
4748
'next_uri': 'str',
4849
'last_uri': 'str',
49-
'first_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -56,10 +56,10 @@ def __init__(self):
5656
'page_number': 'pageNumber',
5757
'total': 'total',
5858
'self_uri': 'selfUri',
59+
'first_uri': 'firstUri',
5960
'previous_uri': 'previousUri',
6061
'next_uri': 'nextUri',
6162
'last_uri': 'lastUri',
62-
'first_uri': 'firstUri',
6363
'page_count': 'pageCount'
6464
}
6565

@@ -68,10 +68,10 @@ def __init__(self):
6868
self._page_number = None
6969
self._total = None
7070
self._self_uri = None
71+
self._first_uri = None
7172
self._previous_uri = None
7273
self._next_uri = None
7374
self._last_uri = None
74-
self._first_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -189,6 +189,29 @@ def self_uri(self, self_uri):
189189

190190
self._self_uri = self_uri
191191

192+
@property
193+
def first_uri(self):
194+
"""
195+
Gets the first_uri of this AgentActivityEntityListing.
196+
197+
198+
:return: The first_uri of this AgentActivityEntityListing.
199+
:rtype: str
200+
"""
201+
return self._first_uri
202+
203+
@first_uri.setter
204+
def first_uri(self, first_uri):
205+
"""
206+
Sets the first_uri of this AgentActivityEntityListing.
207+
208+
209+
:param first_uri: The first_uri of this AgentActivityEntityListing.
210+
:type: str
211+
"""
212+
213+
self._first_uri = first_uri
214+
192215
@property
193216
def previous_uri(self):
194217
"""
@@ -258,29 +281,6 @@ def last_uri(self, last_uri):
258281

259282
self._last_uri = last_uri
260283

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

build/PureCloudPlatformClientV2/models/attempt_limits_entity_listing.py

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ def __init__(self):
4343
'page_number': 'int',
4444
'total': 'int',
4545
'self_uri': 'str',
46+
'first_uri': 'str',
4647
'previous_uri': 'str',
4748
'next_uri': 'str',
4849
'last_uri': 'str',
49-
'first_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -56,10 +56,10 @@ def __init__(self):
5656
'page_number': 'pageNumber',
5757
'total': 'total',
5858
'self_uri': 'selfUri',
59+
'first_uri': 'firstUri',
5960
'previous_uri': 'previousUri',
6061
'next_uri': 'nextUri',
6162
'last_uri': 'lastUri',
62-
'first_uri': 'firstUri',
6363
'page_count': 'pageCount'
6464
}
6565

@@ -68,10 +68,10 @@ def __init__(self):
6868
self._page_number = None
6969
self._total = None
7070
self._self_uri = None
71+
self._first_uri = None
7172
self._previous_uri = None
7273
self._next_uri = None
7374
self._last_uri = None
74-
self._first_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -189,6 +189,29 @@ def self_uri(self, self_uri):
189189

190190
self._self_uri = self_uri
191191

192+
@property
193+
def first_uri(self):
194+
"""
195+
Gets the first_uri of this AttemptLimitsEntityListing.
196+
197+
198+
:return: The first_uri of this AttemptLimitsEntityListing.
199+
:rtype: str
200+
"""
201+
return self._first_uri
202+
203+
@first_uri.setter
204+
def first_uri(self, first_uri):
205+
"""
206+
Sets the first_uri of this AttemptLimitsEntityListing.
207+
208+
209+
:param first_uri: The first_uri of this AttemptLimitsEntityListing.
210+
:type: str
211+
"""
212+
213+
self._first_uri = first_uri
214+
192215
@property
193216
def previous_uri(self):
194217
"""
@@ -258,29 +281,6 @@ def last_uri(self, last_uri):
258281

259282
self._last_uri = last_uri
260283

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

0 commit comments

Comments
 (0)