Skip to content
This repository was archived by the owner on Oct 12, 2025. It is now read-only.

Latest commit

 

History

History
executable file
·
29 lines (20 loc) · 844 Bytes

File metadata and controls

executable file
·
29 lines (20 loc) · 844 Bytes

UserName

Properties

Name Type Description Notes
display_name str User's full name [optional] [readonly]

Example

from epiccore.models.user_name import UserName

# TODO update the JSON string below
json = "{}"
# create an instance of UserName from a JSON string
user_name_instance = UserName.from_json(json)
# print the JSON string representation of the object
print UserName.to_json()

# convert the object into a dict
user_name_dict = user_name_instance.to_dict()
# create an instance of UserName from a dict
user_name_form_dict = user_name.from_dict(user_name_dict)

[Back to Model list] [Back to API list] [Back to README]