UserIdentifier
Properties
Name |
Type |
Description |
Notes |
id |
str |
|
|
Example
from libica.openapi.v3.models.user_identifier import UserIdentifier
# TODO update the JSON string below
json = "{}"
# create an instance of UserIdentifier from a JSON string
user_identifier_instance = UserIdentifier.from_json(json)
# print the JSON string representation of the object
print(UserIdentifier.to_json())
# convert the object into a dict
user_identifier_dict = user_identifier_instance.to_dict()
# create an instance of UserIdentifier from a dict
user_identifier_from_dict = UserIdentifier.from_dict(user_identifier_dict)
[Back to Model list] [Back to API list] [Back to README]