Skip to content

Commit 3585cc2

Browse files
author
PureCloud Jenkins
committed
47.1.0
1 parent 3813bbb commit 3585cc2

File tree

326 files changed

+4032
-3601
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

326 files changed

+4032
-3601
lines changed

build/PureCloudPlatformClientV2/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,8 @@
450450
from .models.dialer_rule import DialerRule
451451
from .models.dialer_ruleset_config_change_action import DialerRulesetConfigChangeAction
452452
from .models.dialer_ruleset_config_change_condition import DialerRulesetConfigChangeCondition
453+
from .models.dialer_ruleset_config_change_contact_column_to_data_action_field_mapping import DialerRulesetConfigChangeContactColumnToDataActionFieldMapping
454+
from .models.dialer_ruleset_config_change_data_action_condition_predicate import DialerRulesetConfigChangeDataActionConditionPredicate
453455
from .models.dialer_ruleset_config_change_rule import DialerRulesetConfigChangeRule
454456
from .models.dialer_ruleset_config_change_rule_set import DialerRulesetConfigChangeRuleSet
455457
from .models.dialer_ruleset_config_change_uri_reference import DialerRulesetConfigChangeUriReference

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'] = '47.0.0'
115+
header_params['purecloud-sdk'] = '47.1.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
@@ -245,5 +245,5 @@ def to_debug_report(self):
245245
"OS: {env}\n"\
246246
"Python Version: {pyversion}\n"\
247247
"Version of the API: v2\n"\
248-
"SDK Package Version: 47.0.0".\
248+
"SDK Package Version: 47.1.0".\
249249
format(env=sys.platform, pyversion=sys.version)

build/PureCloudPlatformClientV2/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,8 @@
450450
from .dialer_rule import DialerRule
451451
from .dialer_ruleset_config_change_action import DialerRulesetConfigChangeAction
452452
from .dialer_ruleset_config_change_condition import DialerRulesetConfigChangeCondition
453+
from .dialer_ruleset_config_change_contact_column_to_data_action_field_mapping import DialerRulesetConfigChangeContactColumnToDataActionFieldMapping
454+
from .dialer_ruleset_config_change_data_action_condition_predicate import DialerRulesetConfigChangeDataActionConditionPredicate
453455
from .dialer_ruleset_config_change_rule import DialerRulesetConfigChangeRule
454456
from .dialer_ruleset_config_change_rule_set import DialerRulesetConfigChangeRuleSet
455457
from .dialer_ruleset_config_change_uri_reference import DialerRulesetConfigChangeUriReference

build/PureCloudPlatformClientV2/models/action_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def __init__(self):
4545
'first_uri': 'str',
4646
'self_uri': 'str',
4747
'previous_uri': 'str',
48-
'last_uri': 'str',
4948
'next_uri': 'str',
49+
'last_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -58,8 +58,8 @@ def __init__(self):
5858
'first_uri': 'firstUri',
5959
'self_uri': 'selfUri',
6060
'previous_uri': 'previousUri',
61-
'last_uri': 'lastUri',
6261
'next_uri': 'nextUri',
62+
'last_uri': 'lastUri',
6363
'page_count': 'pageCount'
6464
}
6565

@@ -70,8 +70,8 @@ def __init__(self):
7070
self._first_uri = None
7171
self._self_uri = None
7272
self._previous_uri = None
73-
self._last_uri = None
7473
self._next_uri = None
74+
self._last_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -236,50 +236,50 @@ def previous_uri(self, previous_uri):
236236
self._previous_uri = previous_uri
237237

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

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

259-
self._last_uri = last_uri
259+
self._next_uri = next_uri
260260

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

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

282-
self._next_uri = next_uri
282+
self._last_uri = last_uri
283283

284284
@property
285285
def page_count(self):

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def __init__(self):
4545
'first_uri': 'str',
4646
'self_uri': 'str',
4747
'previous_uri': 'str',
48-
'last_uri': 'str',
4948
'next_uri': 'str',
49+
'last_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -58,8 +58,8 @@ def __init__(self):
5858
'first_uri': 'firstUri',
5959
'self_uri': 'selfUri',
6060
'previous_uri': 'previousUri',
61-
'last_uri': 'lastUri',
6261
'next_uri': 'nextUri',
62+
'last_uri': 'lastUri',
6363
'page_count': 'pageCount'
6464
}
6565

@@ -70,8 +70,8 @@ def __init__(self):
7070
self._first_uri = None
7171
self._self_uri = None
7272
self._previous_uri = None
73-
self._last_uri = None
7473
self._next_uri = None
74+
self._last_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -236,50 +236,50 @@ def previous_uri(self, previous_uri):
236236
self._previous_uri = previous_uri
237237

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

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

259-
self._last_uri = last_uri
259+
self._next_uri = next_uri
260260

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

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

282-
self._next_uri = next_uri
282+
self._last_uri = last_uri
283283

284284
@property
285285
def page_count(self):

build/PureCloudPlatformClientV2/models/attachment.py

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,25 @@ def __init__(self):
4242
'name': 'str',
4343
'content_uri': 'str',
4444
'content_type': 'str',
45-
'content_length': 'int'
45+
'content_length': 'int',
46+
'inline_image': 'bool'
4647
}
4748

4849
self.attribute_map = {
4950
'attachment_id': 'attachmentId',
5051
'name': 'name',
5152
'content_uri': 'contentUri',
5253
'content_type': 'contentType',
53-
'content_length': 'contentLength'
54+
'content_length': 'contentLength',
55+
'inline_image': 'inlineImage'
5456
}
5557

5658
self._attachment_id = None
5759
self._name = None
5860
self._content_uri = None
5961
self._content_type = None
6062
self._content_length = None
63+
self._inline_image = None
6164

6265
@property
6366
def attachment_id(self):
@@ -174,6 +177,29 @@ def content_length(self, content_length):
174177

175178
self._content_length = content_length
176179

180+
@property
181+
def inline_image(self):
182+
"""
183+
Gets the inline_image of this Attachment.
184+
Whether or not the attachment was attached inline.,
185+
186+
:return: The inline_image of this Attachment.
187+
:rtype: bool
188+
"""
189+
return self._inline_image
190+
191+
@inline_image.setter
192+
def inline_image(self, inline_image):
193+
"""
194+
Sets the inline_image of this Attachment.
195+
Whether or not the attachment was attached inline.,
196+
197+
:param inline_image: The inline_image of this Attachment.
198+
:type: bool
199+
"""
200+
201+
self._inline_image = inline_image
202+
177203
def to_dict(self):
178204
"""
179205
Returns the model properties as a dict

build/PureCloudPlatformClientV2/models/attempt_limits_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ def __init__(self):
4545
'first_uri': 'str',
4646
'self_uri': 'str',
4747
'previous_uri': 'str',
48-
'last_uri': 'str',
4948
'next_uri': 'str',
49+
'last_uri': 'str',
5050
'page_count': 'int'
5151
}
5252

@@ -58,8 +58,8 @@ def __init__(self):
5858
'first_uri': 'firstUri',
5959
'self_uri': 'selfUri',
6060
'previous_uri': 'previousUri',
61-
'last_uri': 'lastUri',
6261
'next_uri': 'nextUri',
62+
'last_uri': 'lastUri',
6363
'page_count': 'pageCount'
6464
}
6565

@@ -70,8 +70,8 @@ def __init__(self):
7070
self._first_uri = None
7171
self._self_uri = None
7272
self._previous_uri = None
73-
self._last_uri = None
7473
self._next_uri = None
74+
self._last_uri = None
7575
self._page_count = None
7676

7777
@property
@@ -236,50 +236,50 @@ def previous_uri(self, previous_uri):
236236
self._previous_uri = previous_uri
237237

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

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

259-
self._last_uri = last_uri
259+
self._next_uri = next_uri
260260

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

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

282-
self._next_uri = next_uri
282+
self._last_uri = last_uri
283283

284284
@property
285285
def page_count(self):

0 commit comments

Comments
 (0)