Skip to content

Commit 2bfb7b3

Browse files
author
InIn Devops
committed
5.1.1
1 parent df45dc3 commit 2bfb7b3

File tree

261 files changed

+3226
-2850
lines changed

Some content is hidden

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

261 files changed

+3226
-2850
lines changed

build/PureCloudPlatformClientV2/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@
110110
from .models.callback_conversation_notification_participants import CallbackConversationNotificationParticipants
111111
from .models.callback_conversation_notification_phone_number_column import CallbackConversationNotificationPhoneNumberColumn
112112
from .models.callback_conversation_notification_uri_reference import CallbackConversationNotificationUriReference
113+
from .models.callback_conversation_notification_voicemail import CallbackConversationNotificationVoicemail
113114
from .models.callback_conversation_notification_wrapup import CallbackConversationNotificationWrapup
114115
from .models.callback_identifier import CallbackIdentifier
115116
from .models.callback_media_participant import CallbackMediaParticipant
@@ -257,6 +258,7 @@
257258
from .models.conversation_notification_social_expressions import ConversationNotificationSocialExpressions
258259
from .models.conversation_notification_video import ConversationNotificationVideo
259260
from .models.conversation_notification_videos import ConversationNotificationVideos
261+
from .models.conversation_notification_voicemail import ConversationNotificationVoicemail
260262
from .models.conversation_notification_wrapup import ConversationNotificationWrapup
261263
from .models.conversation_query import ConversationQuery
262264
from .models.copy_voicemail_message import CopyVoicemailMessage

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.1.0".\
241+
"SDK Package Version: 5.1.1".\
242242
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
@@ -110,6 +110,7 @@
110110
from .callback_conversation_notification_participants import CallbackConversationNotificationParticipants
111111
from .callback_conversation_notification_phone_number_column import CallbackConversationNotificationPhoneNumberColumn
112112
from .callback_conversation_notification_uri_reference import CallbackConversationNotificationUriReference
113+
from .callback_conversation_notification_voicemail import CallbackConversationNotificationVoicemail
113114
from .callback_conversation_notification_wrapup import CallbackConversationNotificationWrapup
114115
from .callback_identifier import CallbackIdentifier
115116
from .callback_media_participant import CallbackMediaParticipant
@@ -257,6 +258,7 @@
257258
from .conversation_notification_social_expressions import ConversationNotificationSocialExpressions
258259
from .conversation_notification_video import ConversationNotificationVideo
259260
from .conversation_notification_videos import ConversationNotificationVideos
261+
from .conversation_notification_voicemail import ConversationNotificationVoicemail
260262
from .conversation_notification_wrapup import ConversationNotificationWrapup
261263
from .conversation_query import ConversationQuery
262264
from .copy_voicemail_message import CopyVoicemailMessage

build/PureCloudPlatformClientV2/models/agent_activity_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ 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',
4747
'previous_uri': 'str',
4848
'next_uri': 'str',
4949
'last_uri': 'str',
@@ -55,8 +55,8 @@ 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',
6060
'previous_uri': 'previousUri',
6161
'next_uri': 'nextUri',
6262
'last_uri': 'lastUri',
@@ -67,8 +67,8 @@ def __init__(self):
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
7272
self._previous_uri = None
7373
self._next_uri = None
7474
self._last_uri = None
@@ -167,50 +167,50 @@ def total(self, total):
167167
self._total = total
168168

169169
@property
170-
def self_uri(self):
170+
def first_uri(self):
171171
"""
172-
Gets the self_uri of this AgentActivityEntityListing.
172+
Gets the first_uri of this AgentActivityEntityListing.
173173
174174
175-
:return: The self_uri of this AgentActivityEntityListing.
175+
:return: The first_uri of this AgentActivityEntityListing.
176176
:rtype: str
177177
"""
178-
return self._self_uri
178+
return self._first_uri
179179

180-
@self_uri.setter
181-
def self_uri(self, self_uri):
180+
@first_uri.setter
181+
def first_uri(self, first_uri):
182182
"""
183-
Sets the self_uri of this AgentActivityEntityListing.
183+
Sets the first_uri of this AgentActivityEntityListing.
184184
185185
186-
:param self_uri: The self_uri of this AgentActivityEntityListing.
186+
:param first_uri: The first_uri of this AgentActivityEntityListing.
187187
:type: str
188188
"""
189189

190-
self._self_uri = self_uri
190+
self._first_uri = first_uri
191191

192192
@property
193-
def first_uri(self):
193+
def self_uri(self):
194194
"""
195-
Gets the first_uri of this AgentActivityEntityListing.
195+
Gets the self_uri of this AgentActivityEntityListing.
196196
197197
198-
:return: The first_uri of this AgentActivityEntityListing.
198+
:return: The self_uri of this AgentActivityEntityListing.
199199
:rtype: str
200200
"""
201-
return self._first_uri
201+
return self._self_uri
202202

203-
@first_uri.setter
204-
def first_uri(self, first_uri):
203+
@self_uri.setter
204+
def self_uri(self, self_uri):
205205
"""
206-
Sets the first_uri of this AgentActivityEntityListing.
206+
Sets the self_uri of this AgentActivityEntityListing.
207207
208208
209-
:param first_uri: The first_uri of this AgentActivityEntityListing.
209+
:param self_uri: The self_uri of this AgentActivityEntityListing.
210210
:type: str
211211
"""
212212

213-
self._first_uri = first_uri
213+
self._self_uri = self_uri
214214

215215
@property
216216
def previous_uri(self):

build/PureCloudPlatformClientV2/models/attempt_limits_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ 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',
4747
'previous_uri': 'str',
4848
'next_uri': 'str',
4949
'last_uri': 'str',
@@ -55,8 +55,8 @@ 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',
6060
'previous_uri': 'previousUri',
6161
'next_uri': 'nextUri',
6262
'last_uri': 'lastUri',
@@ -67,8 +67,8 @@ def __init__(self):
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
7272
self._previous_uri = None
7373
self._next_uri = None
7474
self._last_uri = None
@@ -167,50 +167,50 @@ def total(self, total):
167167
self._total = total
168168

169169
@property
170-
def self_uri(self):
170+
def first_uri(self):
171171
"""
172-
Gets the self_uri of this AttemptLimitsEntityListing.
172+
Gets the first_uri of this AttemptLimitsEntityListing.
173173
174174
175-
:return: The self_uri of this AttemptLimitsEntityListing.
175+
:return: The first_uri of this AttemptLimitsEntityListing.
176176
:rtype: str
177177
"""
178-
return self._self_uri
178+
return self._first_uri
179179

180-
@self_uri.setter
181-
def self_uri(self, self_uri):
180+
@first_uri.setter
181+
def first_uri(self, first_uri):
182182
"""
183-
Sets the self_uri of this AttemptLimitsEntityListing.
183+
Sets the first_uri of this AttemptLimitsEntityListing.
184184
185185
186-
:param self_uri: The self_uri of this AttemptLimitsEntityListing.
186+
:param first_uri: The first_uri of this AttemptLimitsEntityListing.
187187
:type: str
188188
"""
189189

190-
self._self_uri = self_uri
190+
self._first_uri = first_uri
191191

192192
@property
193-
def first_uri(self):
193+
def self_uri(self):
194194
"""
195-
Gets the first_uri of this AttemptLimitsEntityListing.
195+
Gets the self_uri of this AttemptLimitsEntityListing.
196196
197197
198-
:return: The first_uri of this AttemptLimitsEntityListing.
198+
:return: The self_uri of this AttemptLimitsEntityListing.
199199
:rtype: str
200200
"""
201-
return self._first_uri
201+
return self._self_uri
202202

203-
@first_uri.setter
204-
def first_uri(self, first_uri):
203+
@self_uri.setter
204+
def self_uri(self, self_uri):
205205
"""
206-
Sets the first_uri of this AttemptLimitsEntityListing.
206+
Sets the self_uri of this AttemptLimitsEntityListing.
207207
208208
209-
:param first_uri: The first_uri of this AttemptLimitsEntityListing.
209+
:param self_uri: The self_uri of this AttemptLimitsEntityListing.
210210
:type: str
211211
"""
212212

213-
self._first_uri = first_uri
213+
self._self_uri = self_uri
214214

215215
@property
216216
def previous_uri(self):

build/PureCloudPlatformClientV2/models/attribute_entity_listing.py

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ 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',
4747
'previous_uri': 'str',
4848
'next_uri': 'str',
4949
'last_uri': 'str',
@@ -55,8 +55,8 @@ 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',
6060
'previous_uri': 'previousUri',
6161
'next_uri': 'nextUri',
6262
'last_uri': 'lastUri',
@@ -67,8 +67,8 @@ def __init__(self):
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
7272
self._previous_uri = None
7373
self._next_uri = None
7474
self._last_uri = None
@@ -167,50 +167,50 @@ def total(self, total):
167167
self._total = total
168168

169169
@property
170-
def self_uri(self):
170+
def first_uri(self):
171171
"""
172-
Gets the self_uri of this AttributeEntityListing.
172+
Gets the first_uri of this AttributeEntityListing.
173173
174174
175-
:return: The self_uri of this AttributeEntityListing.
175+
:return: The first_uri of this AttributeEntityListing.
176176
:rtype: str
177177
"""
178-
return self._self_uri
178+
return self._first_uri
179179

180-
@self_uri.setter
181-
def self_uri(self, self_uri):
180+
@first_uri.setter
181+
def first_uri(self, first_uri):
182182
"""
183-
Sets the self_uri of this AttributeEntityListing.
183+
Sets the first_uri of this AttributeEntityListing.
184184
185185
186-
:param self_uri: The self_uri of this AttributeEntityListing.
186+
:param first_uri: The first_uri of this AttributeEntityListing.
187187
:type: str
188188
"""
189189

190-
self._self_uri = self_uri
190+
self._first_uri = first_uri
191191

192192
@property
193-
def first_uri(self):
193+
def self_uri(self):
194194
"""
195-
Gets the first_uri of this AttributeEntityListing.
195+
Gets the self_uri of this AttributeEntityListing.
196196
197197
198-
:return: The first_uri of this AttributeEntityListing.
198+
:return: The self_uri of this AttributeEntityListing.
199199
:rtype: str
200200
"""
201-
return self._first_uri
201+
return self._self_uri
202202

203-
@first_uri.setter
204-
def first_uri(self, first_uri):
203+
@self_uri.setter
204+
def self_uri(self, self_uri):
205205
"""
206-
Sets the first_uri of this AttributeEntityListing.
206+
Sets the self_uri of this AttributeEntityListing.
207207
208208
209-
:param first_uri: The first_uri of this AttributeEntityListing.
209+
:param self_uri: The self_uri of this AttributeEntityListing.
210210
:type: str
211211
"""
212212

213-
self._first_uri = first_uri
213+
self._self_uri = self_uri
214214

215215
@property
216216
def previous_uri(self):

0 commit comments

Comments
 (0)