Skip to content

Commit 85fcc9e

Browse files
author
PureCloud Jenkins
committed
196.1.0
1 parent 997c9b9 commit 85fcc9e

File tree

9 files changed

+80
-792
lines changed

9 files changed

+80
-792
lines changed

build/PureCloudPlatformClientV2/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def __call_api(self, resource_path, method,
357357
header_params['Cookie'] = self.cookie
358358
if header_params:
359359
header_params = self.sanitize_for_serialization(header_params)
360-
header_params['purecloud-sdk'] = '196.0.0'
360+
header_params['purecloud-sdk'] = '196.1.0'
361361

362362
# path parameters
363363
if path_params:

build/PureCloudPlatformClientV2/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ def to_debug_report(self):
202202
"OS: {env}\n"\
203203
"Python Version: {pyversion}\n"\
204204
"Version of the API: v2\n"\
205-
"SDK Package Version: 196.0.0".\
205+
"SDK Package Version: 196.1.0".\
206206
format(env=sys.platform, pyversion=sys.version)
207207

208208
def _update_config_from_file(self):

build/PureCloudPlatformClientV2/models/contact_identifier.py

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,20 +48,50 @@ def __init__(self) -> None:
4848
and the value is json key in definition.
4949
"""
5050
self.swagger_types = {
51+
'id': 'str',
5152
'type': 'str',
5253
'value': 'str',
53-
'date_created': 'datetime'
54+
'date_created': 'datetime',
55+
'self_uri': 'str'
5456
}
5557

5658
self.attribute_map = {
59+
'id': 'id',
5760
'type': 'type',
5861
'value': 'value',
59-
'date_created': 'dateCreated'
62+
'date_created': 'dateCreated',
63+
'self_uri': 'selfUri'
6064
}
6165

66+
self._id = None
6267
self._type = None
6368
self._value = None
6469
self._date_created = None
70+
self._self_uri = None
71+
72+
@property
73+
def id(self) -> str:
74+
"""
75+
Gets the id of this ContactIdentifier.
76+
The globally unique identifier for the object.
77+
78+
:return: The id of this ContactIdentifier.
79+
:rtype: str
80+
"""
81+
return self._id
82+
83+
@id.setter
84+
def id(self, id: str) -> None:
85+
"""
86+
Sets the id of this ContactIdentifier.
87+
The globally unique identifier for the object.
88+
89+
:param id: The id of this ContactIdentifier.
90+
:type: str
91+
"""
92+
93+
94+
self._id = id
6595

6696
@property
6797
def type(self) -> str:
@@ -140,6 +170,30 @@ def date_created(self, date_created: datetime) -> None:
140170

141171
self._date_created = date_created
142172

173+
@property
174+
def self_uri(self) -> str:
175+
"""
176+
Gets the self_uri of this ContactIdentifier.
177+
The URI for this object
178+
179+
:return: The self_uri of this ContactIdentifier.
180+
:rtype: str
181+
"""
182+
return self._self_uri
183+
184+
@self_uri.setter
185+
def self_uri(self, self_uri: str) -> None:
186+
"""
187+
Sets the self_uri of this ContactIdentifier.
188+
The URI for this object
189+
190+
:param self_uri: The self_uri of this ContactIdentifier.
191+
:type: str
192+
"""
193+
194+
195+
self._self_uri = self_uri
196+
143197
def to_dict(self):
144198
"""
145199
Returns the model properties as a dict

build/docs/ContactIdentifier.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ title: ContactIdentifier
77

88
|Name | Type | Description | Notes|
99
|------------ | ------------- | ------------- | -------------|
10+
| **id** | **str** | The globally unique identifier for the object. | [optional] |
1011
| **type** | **str** | The type of this identifier | |
1112
| **value** | **str** | The string value of the identifier. Will vary in syntax by type. | |
1213
| **date_created** | **datetime** | Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss[.mmm]Z | [optional] |
14+
| **self_uri** | **str** | The URI for this object | [optional] |
1315
{: class="table table-striped"}
1416

1517

0 commit comments

Comments
 (0)