Skip to content

Commit 53d00f8

Browse files
author
PureCloud Jenkins
committed
246.1.0
1 parent d82c9c0 commit 53d00f8

5,911 files changed

Lines changed: 6280 additions & 7428 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.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Documentation can be found at https://mypurecloud.github.io/platform-client-sdk-python/
77

8-
Documentation version PureCloudPlatformClientV2 246.0.0
8+
Documentation version PureCloudPlatformClientV2 246.1.0
99

1010
## Preview APIs
1111

build/APIData.json

Lines changed: 247 additions & 247 deletions
Large diffs are not rendered by default.

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ def __call_api(self, resource_path, method,
419419
header_params['Cookie'] = self.cookie
420420
if header_params:
421421
header_params = self.sanitize_for_serialization(header_params)
422-
header_params['purecloud-sdk'] = '246.0.0'
422+
header_params['purecloud-sdk'] = '246.1.0'
423423

424424
# path parameters
425425
if path_params:

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ def to_debug_report(self):
256256
"OS: {env}\n"\
257257
"Python Version: {pyversion}\n"\
258258
"Version of the API: v2\n"\
259-
"SDK Package Version: 246.0.0".\
259+
"SDK Package Version: 246.1.0".\
260260
format(env=sys.platform, pyversion=sys.version)
261261

262262
def _update_config_from_file(self):

build/PureCloudPlatformClientV2/models/outbound_messaging_campaign_pre_contact_whatsapp_event_topic_outbound_messaging_campaign_pre_contact_whats_app_event.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def wrapup_code(self, wrapup_code: str) -> None:
184184
"""
185185
if isinstance(wrapup_code, int):
186186
wrapup_code = str(wrapup_code)
187-
allowed_values = ["UNKNOWN", "ININ_OUTBOUND_NUMBERS_INVALID", "ININ_OUTBOUND_INTERNAL_ERROR_SKIPPED", "ININ_OUTBOUND_DNC_SKIPPED", "ININ_OUTBOUND_ZONE_BLOCKED_SKIPPED", "OUTBOUND_CONTACT_UNCONTACTABLE_SKIPPED", "OUTBOUND_NUMBER_UNCONTACTABLE_SKIPPED", "OUTBOUND_INVALID_PHONE_NUMBER", "ININ_OUTBOUND_DNC_AUTHENTICATION_FAILED", "ININ_OUTBOUND_ON_DO_NOT_CALL_LIST", "OUTBOUND_MAX_MESSAGE_LENGTH_EXCEEDED", "OUTBOUND_STUCK_CONTACT", "OUTBOUND_MESSAGE_HEADER_PARAMETER_VALUE_TOO_LONG", "OUTBOUND_MESSAGE_BUTTON_URL_PARAMETER_VALUE_TOO_LONG"]
187+
allowed_values = ["UNKNOWN", "ININ_OUTBOUND_NUMBERS_INVALID", "ININ_OUTBOUND_INTERNAL_ERROR_SKIPPED", "ININ_OUTBOUND_DNC_SKIPPED", "ININ_OUTBOUND_ZONE_BLOCKED_SKIPPED", "OUTBOUND_CONTACT_UNCONTACTABLE_SKIPPED", "OUTBOUND_NUMBER_UNCONTACTABLE_SKIPPED", "OUTBOUND_INVALID_PHONE_NUMBER", "ININ_OUTBOUND_DNC_AUTHENTICATION_FAILED", "ININ_OUTBOUND_ON_DO_NOT_CALL_LIST", "OUTBOUND_MAX_MESSAGE_LENGTH_EXCEEDED", "OUTBOUND_STUCK_CONTACT", "OUTBOUND_MESSAGE_HEADER_PARAMETER_VALUE_TOO_LONG", "OUTBOUND_MESSAGE_BUTTON_URL_PARAMETER_VALUE_TOO_LONG", "OUTBOUND_RULE_ERROR_SKIPPED", "OUTBOUND_RULE_SKIPPED", "OUTBOUND_CONTACT_ADDRESS_UNCONTACTABLE_SKIPPED"]
188188
if wrapup_code.lower() not in map(str.lower, allowed_values):
189189
# print("Invalid value for wrapup_code -> " + wrapup_code)
190190
self._wrapup_code = "outdated_sdk_version"

build/PureCloudPlatformClientV2/models/outbound_preview_campaign_post_contact_outbound_preview_campaign_post_contact_event.py

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,8 @@ def __init__(self) -> None:
7070
'conversation_id': 'str',
7171
'is_right_party_contact': 'bool',
7272
'call_analysis_disposition': 'str',
73-
'agent_id': 'str'
73+
'agent_id': 'str',
74+
'is_preview_auto_ended': 'bool'
7475
}
7576

7677
self.attribute_map = {
@@ -95,7 +96,8 @@ def __init__(self) -> None:
9596
'conversation_id': 'conversationId',
9697
'is_right_party_contact': 'isRightPartyContact',
9798
'call_analysis_disposition': 'callAnalysisDisposition',
98-
'agent_id': 'agentId'
99+
'agent_id': 'agentId',
100+
'is_preview_auto_ended': 'isPreviewAutoEnded'
99101
}
100102

101103
self._event_time = None
@@ -120,6 +122,7 @@ def __init__(self) -> None:
120122
self._is_right_party_contact = None
121123
self._call_analysis_disposition = None
122124
self._agent_id = None
125+
self._is_preview_auto_ended = None
123126

124127
@property
125128
def event_time(self) -> int:
@@ -654,6 +657,30 @@ def agent_id(self, agent_id: str) -> None:
654657

655658
self._agent_id = agent_id
656659

660+
@property
661+
def is_preview_auto_ended(self) -> bool:
662+
"""
663+
Gets the is_preview_auto_ended of this OutboundPreviewCampaignPostContactOutboundPreviewCampaignPostContactEvent.
664+
665+
666+
:return: The is_preview_auto_ended of this OutboundPreviewCampaignPostContactOutboundPreviewCampaignPostContactEvent.
667+
:rtype: bool
668+
"""
669+
return self._is_preview_auto_ended
670+
671+
@is_preview_auto_ended.setter
672+
def is_preview_auto_ended(self, is_preview_auto_ended: bool) -> None:
673+
"""
674+
Sets the is_preview_auto_ended of this OutboundPreviewCampaignPostContactOutboundPreviewCampaignPostContactEvent.
675+
676+
677+
:param is_preview_auto_ended: The is_preview_auto_ended of this OutboundPreviewCampaignPostContactOutboundPreviewCampaignPostContactEvent.
678+
:type: bool
679+
"""
680+
681+
682+
self._is_preview_auto_ended = is_preview_auto_ended
683+
657684
def to_dict(self):
658685
"""
659686
Returns the model properties as a dict

build/PureCloudPlatformClientV2/models/workitems_events_notification_workitem.py

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ def __init__(self) -> None:
9494
'preferred_agent_ids': 'list[str]',
9595
'division_id': 'str',
9696
'scored_agents': 'list[WorkitemsEventsNotificationScoredAgent]',
97-
'utilization_label_id': 'str'
97+
'utilization_label_id': 'str',
98+
'case_id': 'str'
9899
}
99100

100101
self.attribute_map = {
@@ -138,7 +139,8 @@ def __init__(self) -> None:
138139
'preferred_agent_ids': 'preferredAgentIds',
139140
'division_id': 'divisionId',
140141
'scored_agents': 'scoredAgents',
141-
'utilization_label_id': 'utilizationLabelId'
142+
'utilization_label_id': 'utilizationLabelId',
143+
'case_id': 'caseId'
142144
}
143145

144146
self._id = None
@@ -182,6 +184,7 @@ def __init__(self) -> None:
182184
self._division_id = None
183185
self._scored_agents = None
184186
self._utilization_label_id = None
187+
self._case_id = None
185188

186189
@property
187190
def id(self) -> str:
@@ -1182,6 +1185,30 @@ def utilization_label_id(self, utilization_label_id: str) -> None:
11821185

11831186
self._utilization_label_id = utilization_label_id
11841187

1188+
@property
1189+
def case_id(self) -> str:
1190+
"""
1191+
Gets the case_id of this WorkitemsEventsNotificationWorkitem.
1192+
1193+
1194+
:return: The case_id of this WorkitemsEventsNotificationWorkitem.
1195+
:rtype: str
1196+
"""
1197+
return self._case_id
1198+
1199+
@case_id.setter
1200+
def case_id(self, case_id: str) -> None:
1201+
"""
1202+
Sets the case_id of this WorkitemsEventsNotificationWorkitem.
1203+
1204+
1205+
:param case_id: The case_id of this WorkitemsEventsNotificationWorkitem.
1206+
:type: str
1207+
"""
1208+
1209+
1210+
self._case_id = case_id
1211+
11851212
def to_dict(self):
11861213
"""
11871214
Returns the model properties as a dict

build/PureCloudPlatformClientV2/models/workitems_queue_events_notification_workitem.py

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ def __init__(self) -> None:
9494
'preferred_agent_ids': 'list[str]',
9595
'division_id': 'str',
9696
'scored_agents': 'list[WorkitemsQueueEventsNotificationScoredAgent]',
97-
'utilization_label_id': 'str'
97+
'utilization_label_id': 'str',
98+
'case_id': 'str'
9899
}
99100

100101
self.attribute_map = {
@@ -138,7 +139,8 @@ def __init__(self) -> None:
138139
'preferred_agent_ids': 'preferredAgentIds',
139140
'division_id': 'divisionId',
140141
'scored_agents': 'scoredAgents',
141-
'utilization_label_id': 'utilizationLabelId'
142+
'utilization_label_id': 'utilizationLabelId',
143+
'case_id': 'caseId'
142144
}
143145

144146
self._id = None
@@ -182,6 +184,7 @@ def __init__(self) -> None:
182184
self._division_id = None
183185
self._scored_agents = None
184186
self._utilization_label_id = None
187+
self._case_id = None
185188

186189
@property
187190
def id(self) -> str:
@@ -1182,6 +1185,30 @@ def utilization_label_id(self, utilization_label_id: str) -> None:
11821185

11831186
self._utilization_label_id = utilization_label_id
11841187

1188+
@property
1189+
def case_id(self) -> str:
1190+
"""
1191+
Gets the case_id of this WorkitemsQueueEventsNotificationWorkitem.
1192+
1193+
1194+
:return: The case_id of this WorkitemsQueueEventsNotificationWorkitem.
1195+
:rtype: str
1196+
"""
1197+
return self._case_id
1198+
1199+
@case_id.setter
1200+
def case_id(self, case_id: str) -> None:
1201+
"""
1202+
Sets the case_id of this WorkitemsQueueEventsNotificationWorkitem.
1203+
1204+
1205+
:param case_id: The case_id of this WorkitemsQueueEventsNotificationWorkitem.
1206+
:type: str
1207+
"""
1208+
1209+
1210+
self._case_id = case_id
1211+
11851212
def to_dict(self):
11861213
"""
11871214
Returns the model properties as a dict

build/PureCloudPlatformClientV2/models/workitems_user_events_notification_workitem.py

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,8 @@ def __init__(self) -> None:
9494
'preferred_agent_ids': 'list[str]',
9595
'division_id': 'str',
9696
'scored_agents': 'list[WorkitemsUserEventsNotificationScoredAgent]',
97-
'utilization_label_id': 'str'
97+
'utilization_label_id': 'str',
98+
'case_id': 'str'
9899
}
99100

100101
self.attribute_map = {
@@ -138,7 +139,8 @@ def __init__(self) -> None:
138139
'preferred_agent_ids': 'preferredAgentIds',
139140
'division_id': 'divisionId',
140141
'scored_agents': 'scoredAgents',
141-
'utilization_label_id': 'utilizationLabelId'
142+
'utilization_label_id': 'utilizationLabelId',
143+
'case_id': 'caseId'
142144
}
143145

144146
self._id = None
@@ -182,6 +184,7 @@ def __init__(self) -> None:
182184
self._division_id = None
183185
self._scored_agents = None
184186
self._utilization_label_id = None
187+
self._case_id = None
185188

186189
@property
187190
def id(self) -> str:
@@ -1182,6 +1185,30 @@ def utilization_label_id(self, utilization_label_id: str) -> None:
11821185

11831186
self._utilization_label_id = utilization_label_id
11841187

1188+
@property
1189+
def case_id(self) -> str:
1190+
"""
1191+
Gets the case_id of this WorkitemsUserEventsNotificationWorkitem.
1192+
1193+
1194+
:return: The case_id of this WorkitemsUserEventsNotificationWorkitem.
1195+
:rtype: str
1196+
"""
1197+
return self._case_id
1198+
1199+
@case_id.setter
1200+
def case_id(self, case_id: str) -> None:
1201+
"""
1202+
Sets the case_id of this WorkitemsUserEventsNotificationWorkitem.
1203+
1204+
1205+
:param case_id: The case_id of this WorkitemsUserEventsNotificationWorkitem.
1206+
:type: str
1207+
"""
1208+
1209+
1210+
self._case_id = case_id
1211+
11851212
def to_dict(self):
11861213
"""
11871214
Returns the model properties as a dict

build/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Documentation can be found at https://mypurecloud.github.io/platform-client-sdk-python/
77

8-
Documentation version PureCloudPlatformClientV2 246.0.0
8+
Documentation version PureCloudPlatformClientV2 246.1.0
99

1010
## Preview APIs
1111

0 commit comments

Comments
 (0)