Skip to content

Commit b69655d

Browse files
author
InIn Devops
committed
5.0.1
1 parent a9f5e9e commit b69655d

13 files changed

+133
-159
lines changed

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

build/PureCloudPlatformClientV2/models/domain_organization_role.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def __init__(self):
4646
'permission_policies': 'list[DomainPermissionPolicy]',
4747
'user_count': 'int',
4848
'role_needs_update': 'bool',
49-
'default': 'bool',
5049
'base': 'bool',
50+
'default': 'bool',
5151
'self_uri': 'str'
5252
}
5353

@@ -60,8 +60,8 @@ def __init__(self):
6060
'permission_policies': 'permissionPolicies',
6161
'user_count': 'userCount',
6262
'role_needs_update': 'roleNeedsUpdate',
63-
'default': 'default',
6463
'base': 'base',
64+
'default': 'default',
6565
'self_uri': 'selfUri'
6666
}
6767

@@ -73,8 +73,8 @@ def __init__(self):
7373
self._permission_policies = None
7474
self._user_count = None
7575
self._role_needs_update = None
76-
self._default = None
7776
self._base = None
77+
self._default = None
7878
self._self_uri = None
7979

8080
@property
@@ -262,50 +262,50 @@ def role_needs_update(self, role_needs_update):
262262
self._role_needs_update = role_needs_update
263263

264264
@property
265-
def default(self):
265+
def base(self):
266266
"""
267-
Gets the default of this DomainOrganizationRole.
267+
Gets the base of this DomainOrganizationRole.
268268
269269
270-
:return: The default of this DomainOrganizationRole.
270+
:return: The base of this DomainOrganizationRole.
271271
:rtype: bool
272272
"""
273-
return self._default
273+
return self._base
274274

275-
@default.setter
276-
def default(self, default):
275+
@base.setter
276+
def base(self, base):
277277
"""
278-
Sets the default of this DomainOrganizationRole.
278+
Sets the base of this DomainOrganizationRole.
279279
280280
281-
:param default: The default of this DomainOrganizationRole.
281+
:param base: The base of this DomainOrganizationRole.
282282
:type: bool
283283
"""
284284

285-
self._default = default
285+
self._base = base
286286

287287
@property
288-
def base(self):
288+
def default(self):
289289
"""
290-
Gets the base of this DomainOrganizationRole.
290+
Gets the default of this DomainOrganizationRole.
291291
292292
293-
:return: The base of this DomainOrganizationRole.
293+
:return: The default of this DomainOrganizationRole.
294294
:rtype: bool
295295
"""
296-
return self._base
296+
return self._default
297297

298-
@base.setter
299-
def base(self, base):
298+
@default.setter
299+
def default(self, default):
300300
"""
301-
Sets the base of this DomainOrganizationRole.
301+
Sets the default of this DomainOrganizationRole.
302302
303303
304-
:param base: The base of this DomainOrganizationRole.
304+
:param default: The default of this DomainOrganizationRole.
305305
:type: bool
306306
"""
307307

308-
self._base = base
308+
self._default = default
309309

310310
@property
311311
def self_uri(self):

build/PureCloudPlatformClientV2/models/domain_organization_role_create.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def __init__(self):
4646
'permission_policies': 'list[DomainPermissionPolicy]',
4747
'user_count': 'int',
4848
'role_needs_update': 'bool',
49-
'default': 'bool',
5049
'base': 'bool',
50+
'default': 'bool',
5151
'self_uri': 'str'
5252
}
5353

@@ -60,8 +60,8 @@ def __init__(self):
6060
'permission_policies': 'permissionPolicies',
6161
'user_count': 'userCount',
6262
'role_needs_update': 'roleNeedsUpdate',
63-
'default': 'default',
6463
'base': 'base',
64+
'default': 'default',
6565
'self_uri': 'selfUri'
6666
}
6767

@@ -73,8 +73,8 @@ def __init__(self):
7373
self._permission_policies = None
7474
self._user_count = None
7575
self._role_needs_update = None
76-
self._default = None
7776
self._base = None
77+
self._default = None
7878
self._self_uri = None
7979

8080
@property
@@ -262,50 +262,50 @@ def role_needs_update(self, role_needs_update):
262262
self._role_needs_update = role_needs_update
263263

264264
@property
265-
def default(self):
265+
def base(self):
266266
"""
267-
Gets the default of this DomainOrganizationRoleCreate.
267+
Gets the base of this DomainOrganizationRoleCreate.
268268
269269
270-
:return: The default of this DomainOrganizationRoleCreate.
270+
:return: The base of this DomainOrganizationRoleCreate.
271271
:rtype: bool
272272
"""
273-
return self._default
273+
return self._base
274274

275-
@default.setter
276-
def default(self, default):
275+
@base.setter
276+
def base(self, base):
277277
"""
278-
Sets the default of this DomainOrganizationRoleCreate.
278+
Sets the base of this DomainOrganizationRoleCreate.
279279
280280
281-
:param default: The default of this DomainOrganizationRoleCreate.
281+
:param base: The base of this DomainOrganizationRoleCreate.
282282
:type: bool
283283
"""
284284

285-
self._default = default
285+
self._base = base
286286

287287
@property
288-
def base(self):
288+
def default(self):
289289
"""
290-
Gets the base of this DomainOrganizationRoleCreate.
290+
Gets the default of this DomainOrganizationRoleCreate.
291291
292292
293-
:return: The base of this DomainOrganizationRoleCreate.
293+
:return: The default of this DomainOrganizationRoleCreate.
294294
:rtype: bool
295295
"""
296-
return self._base
296+
return self._default
297297

298-
@base.setter
299-
def base(self, base):
298+
@default.setter
299+
def default(self, default):
300300
"""
301-
Sets the base of this DomainOrganizationRoleCreate.
301+
Sets the default of this DomainOrganizationRoleCreate.
302302
303303
304-
:param base: The base of this DomainOrganizationRoleCreate.
304+
:param default: The default of this DomainOrganizationRoleCreate.
305305
:type: bool
306306
"""
307307

308-
self._base = base
308+
self._default = default
309309

310310
@property
311311
def self_uri(self):

build/PureCloudPlatformClientV2/models/domain_organization_role_update.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ def __init__(self):
4646
'permission_policies': 'list[DomainPermissionPolicy]',
4747
'user_count': 'int',
4848
'role_needs_update': 'bool',
49-
'default': 'bool',
5049
'base': 'bool',
50+
'default': 'bool',
5151
'self_uri': 'str'
5252
}
5353

@@ -60,8 +60,8 @@ def __init__(self):
6060
'permission_policies': 'permissionPolicies',
6161
'user_count': 'userCount',
6262
'role_needs_update': 'roleNeedsUpdate',
63-
'default': 'default',
6463
'base': 'base',
64+
'default': 'default',
6565
'self_uri': 'selfUri'
6666
}
6767

@@ -73,8 +73,8 @@ def __init__(self):
7373
self._permission_policies = None
7474
self._user_count = None
7575
self._role_needs_update = None
76-
self._default = None
7776
self._base = None
77+
self._default = None
7878
self._self_uri = None
7979

8080
@property
@@ -262,50 +262,50 @@ def role_needs_update(self, role_needs_update):
262262
self._role_needs_update = role_needs_update
263263

264264
@property
265-
def default(self):
265+
def base(self):
266266
"""
267-
Gets the default of this DomainOrganizationRoleUpdate.
267+
Gets the base of this DomainOrganizationRoleUpdate.
268268
269269
270-
:return: The default of this DomainOrganizationRoleUpdate.
270+
:return: The base of this DomainOrganizationRoleUpdate.
271271
:rtype: bool
272272
"""
273-
return self._default
273+
return self._base
274274

275-
@default.setter
276-
def default(self, default):
275+
@base.setter
276+
def base(self, base):
277277
"""
278-
Sets the default of this DomainOrganizationRoleUpdate.
278+
Sets the base of this DomainOrganizationRoleUpdate.
279279
280280
281-
:param default: The default of this DomainOrganizationRoleUpdate.
281+
:param base: The base of this DomainOrganizationRoleUpdate.
282282
:type: bool
283283
"""
284284

285-
self._default = default
285+
self._base = base
286286

287287
@property
288-
def base(self):
288+
def default(self):
289289
"""
290-
Gets the base of this DomainOrganizationRoleUpdate.
290+
Gets the default of this DomainOrganizationRoleUpdate.
291291
292292
293-
:return: The base of this DomainOrganizationRoleUpdate.
293+
:return: The default of this DomainOrganizationRoleUpdate.
294294
:rtype: bool
295295
"""
296-
return self._base
296+
return self._default
297297

298-
@base.setter
299-
def base(self, base):
298+
@default.setter
299+
def default(self, default):
300300
"""
301-
Sets the base of this DomainOrganizationRoleUpdate.
301+
Sets the default of this DomainOrganizationRoleUpdate.
302302
303303
304-
:param base: The base of this DomainOrganizationRoleUpdate.
304+
:param default: The default of this DomainOrganizationRoleUpdate.
305305
:type: bool
306306
"""
307307

308-
self._base = base
308+
self._default = default
309309

310310
@property
311311
def self_uri(self):

0 commit comments

Comments
 (0)