@@ -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
0 commit comments