| Name | Type | Description | Notes |
|---|---|---|---|
| display_name | str | User's full name | [optional] [readonly] |
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)