Skip to content

Commit 079f9bf

Browse files
author
PureCloud Jenkins
committed
81.0.0
1 parent 276b81b commit 079f9bf

28 files changed

Lines changed: 571 additions & 88 deletions

build/PureCloudPlatformClientV2/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1551,6 +1551,7 @@
15511551
from .models.tag_query_request import TagQueryRequest
15521552
from .models.tag_value import TagValue
15531553
from .models.tag_value_entity_listing import TagValueEntityListing
1554+
from .models.team import Team
15541555
from .models.term_attribute import TermAttribute
15551556
from .models.test_execution_operation_result import TestExecutionOperationResult
15561557
from .models.test_execution_result import TestExecutionResult

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'] = '80.0.0'
188+
header_params['purecloud-sdk'] = '81.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: 80.0.0".\
258+
"SDK Package Version: 81.0.0".\
259259
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
@@ -1551,6 +1551,7 @@
15511551
from .tag_query_request import TagQueryRequest
15521552
from .tag_value import TagValue
15531553
from .tag_value_entity_listing import TagValueEntityListing
1554+
from .team import Team
15541555
from .term_attribute import TermAttribute
15551556
from .test_execution_operation_result import TestExecutionOperationResult
15561557
from .test_execution_result import TestExecutionResult

build/PureCloudPlatformClientV2/models/entity_listing.py

Lines changed: 108 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,26 @@ def __init__(self):
4040
and the value is json key in definition.
4141
"""
4242
self.swagger_types = {
43-
'entities': 'list[object]'
43+
'entities': 'list[DataTableImportJob]',
44+
'page_size': 'int',
45+
'page_number': 'int',
46+
'total': 'int',
47+
'page_count': 'int'
4448
}
4549

4650
self.attribute_map = {
47-
'entities': 'entities'
51+
'entities': 'entities',
52+
'page_size': 'pageSize',
53+
'page_number': 'pageNumber',
54+
'total': 'total',
55+
'page_count': 'pageCount'
4856
}
4957

5058
self._entities = None
59+
self._page_size = None
60+
self._page_number = None
61+
self._total = None
62+
self._page_count = None
5163

5264
@property
5365
def entities(self):
@@ -56,7 +68,7 @@ def entities(self):
5668
5769
5870
:return: The entities of this EntityListing.
59-
:rtype: list[object]
71+
:rtype: list[DataTableImportJob]
6072
"""
6173
return self._entities
6274

@@ -67,11 +79,103 @@ def entities(self, entities):
6779
6880
6981
:param entities: The entities of this EntityListing.
70-
:type: list[object]
82+
:type: list[DataTableImportJob]
7183
"""
7284

7385
self._entities = entities
7486

87+
@property
88+
def page_size(self):
89+
"""
90+
Gets the page_size of this EntityListing.
91+
92+
93+
:return: The page_size of this EntityListing.
94+
:rtype: int
95+
"""
96+
return self._page_size
97+
98+
@page_size.setter
99+
def page_size(self, page_size):
100+
"""
101+
Sets the page_size of this EntityListing.
102+
103+
104+
:param page_size: The page_size of this EntityListing.
105+
:type: int
106+
"""
107+
108+
self._page_size = page_size
109+
110+
@property
111+
def page_number(self):
112+
"""
113+
Gets the page_number of this EntityListing.
114+
115+
116+
:return: The page_number of this EntityListing.
117+
:rtype: int
118+
"""
119+
return self._page_number
120+
121+
@page_number.setter
122+
def page_number(self, page_number):
123+
"""
124+
Sets the page_number of this EntityListing.
125+
126+
127+
:param page_number: The page_number of this EntityListing.
128+
:type: int
129+
"""
130+
131+
self._page_number = page_number
132+
133+
@property
134+
def total(self):
135+
"""
136+
Gets the total of this EntityListing.
137+
138+
139+
:return: The total of this EntityListing.
140+
:rtype: int
141+
"""
142+
return self._total
143+
144+
@total.setter
145+
def total(self, total):
146+
"""
147+
Sets the total of this EntityListing.
148+
149+
150+
:param total: The total of this EntityListing.
151+
:type: int
152+
"""
153+
154+
self._total = total
155+
156+
@property
157+
def page_count(self):
158+
"""
159+
Gets the page_count of this EntityListing.
160+
161+
162+
:return: The page_count of this EntityListing.
163+
:rtype: int
164+
"""
165+
return self._page_count
166+
167+
@page_count.setter
168+
def page_count(self, page_count):
169+
"""
170+
Sets the page_count of this EntityListing.
171+
172+
173+
:param page_count: The page_count of this EntityListing.
174+
:type: int
175+
"""
176+
177+
self._page_count = page_count
178+
75179
def to_dict(self):
76180
"""
77181
Returns the model properties as a dict

build/PureCloudPlatformClientV2/models/evaluation_question.py

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ def __init__(self):
4848
'comments_required': 'bool',
4949
'visibility_condition': 'VisibilityCondition',
5050
'answer_options': 'list[AnswerOption]',
51-
'is_critical': 'bool',
52-
'is_kill': 'bool'
51+
'is_kill': 'bool',
52+
'is_critical': 'bool'
5353
}
5454

5555
self.attribute_map = {
@@ -61,8 +61,8 @@ def __init__(self):
6161
'comments_required': 'commentsRequired',
6262
'visibility_condition': 'visibilityCondition',
6363
'answer_options': 'answerOptions',
64-
'is_critical': 'isCritical',
65-
'is_kill': 'isKill'
64+
'is_kill': 'isKill',
65+
'is_critical': 'isCritical'
6666
}
6767

6868
self._id = None
@@ -73,8 +73,8 @@ def __init__(self):
7373
self._comments_required = None
7474
self._visibility_condition = None
7575
self._answer_options = None
76-
self._is_critical = None
7776
self._is_kill = None
77+
self._is_critical = None
7878

7979
@property
8080
def id(self):
@@ -265,50 +265,50 @@ def answer_options(self, answer_options):
265265
self._answer_options = answer_options
266266

267267
@property
268-
def is_critical(self):
268+
def is_kill(self):
269269
"""
270-
Gets the is_critical of this EvaluationQuestion.
270+
Gets the is_kill of this EvaluationQuestion.
271271
272272
273-
:return: The is_critical of this EvaluationQuestion.
273+
:return: The is_kill of this EvaluationQuestion.
274274
:rtype: bool
275275
"""
276-
return self._is_critical
276+
return self._is_kill
277277

278-
@is_critical.setter
279-
def is_critical(self, is_critical):
278+
@is_kill.setter
279+
def is_kill(self, is_kill):
280280
"""
281-
Sets the is_critical of this EvaluationQuestion.
281+
Sets the is_kill of this EvaluationQuestion.
282282
283283
284-
:param is_critical: The is_critical of this EvaluationQuestion.
284+
:param is_kill: The is_kill of this EvaluationQuestion.
285285
:type: bool
286286
"""
287287

288-
self._is_critical = is_critical
288+
self._is_kill = is_kill
289289

290290
@property
291-
def is_kill(self):
291+
def is_critical(self):
292292
"""
293-
Gets the is_kill of this EvaluationQuestion.
293+
Gets the is_critical of this EvaluationQuestion.
294294
295295
296-
:return: The is_kill of this EvaluationQuestion.
296+
:return: The is_critical of this EvaluationQuestion.
297297
:rtype: bool
298298
"""
299-
return self._is_kill
299+
return self._is_critical
300300

301-
@is_kill.setter
302-
def is_kill(self, is_kill):
301+
@is_critical.setter
302+
def is_critical(self, is_critical):
303303
"""
304-
Sets the is_kill of this EvaluationQuestion.
304+
Sets the is_critical of this EvaluationQuestion.
305305
306306
307-
:param is_kill: The is_kill of this EvaluationQuestion.
307+
:param is_critical: The is_critical of this EvaluationQuestion.
308308
:type: bool
309309
"""
310310

311-
self._is_kill = is_kill
311+
self._is_critical = is_critical
312312

313313
def to_dict(self):
314314
"""

build/PureCloudPlatformClientV2/models/org_user.py

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ def __init__(self):
6767
'profile_skills': 'list[str]',
6868
'locations': 'list[Location]',
6969
'groups': 'list[Group]',
70+
'team': 'Team',
7071
'skills': 'list[UserRoutingSkill]',
7172
'languages': 'list[UserRoutingLanguage]',
7273
'acd_auto_answer': 'bool',
@@ -103,6 +104,7 @@ def __init__(self):
103104
'profile_skills': 'profileSkills',
104105
'locations': 'locations',
105106
'groups': 'groups',
107+
'team': 'team',
106108
'skills': 'skills',
107109
'languages': 'languages',
108110
'acd_auto_answer': 'acdAutoAnswer',
@@ -138,6 +140,7 @@ def __init__(self):
138140
self._profile_skills = None
139141
self._locations = None
140142
self._groups = None
143+
self._team = None
141144
self._skills = None
142145
self._languages = None
143146
self._acd_auto_answer = None
@@ -770,6 +773,29 @@ def groups(self, groups):
770773

771774
self._groups = groups
772775

776+
@property
777+
def team(self):
778+
"""
779+
Gets the team of this OrgUser.
780+
The team the user is a member of
781+
782+
:return: The team of this OrgUser.
783+
:rtype: Team
784+
"""
785+
return self._team
786+
787+
@team.setter
788+
def team(self, team):
789+
"""
790+
Sets the team of this OrgUser.
791+
The team the user is a member of
792+
793+
:param team: The team of this OrgUser.
794+
:type: Team
795+
"""
796+
797+
self._team = team
798+
773799
@property
774800
def skills(self):
775801
"""

0 commit comments

Comments
 (0)