Display date format of the user
| Name | Type | Description | Notes |
|---|
from onelens_backend_client.models.display_date_format import DisplayDateFormat
# TODO update the JSON string below
json = "{}"
# create an instance of DisplayDateFormat from a JSON string
display_date_format_instance = DisplayDateFormat.from_json(json)
# print the JSON string representation of the object
print(DisplayDateFormat.to_json())
# convert the object into a dict
display_date_format_dict = display_date_format_instance.to_dict()
# create an instance of DisplayDateFormat from a dict
display_date_format_form_dict = display_date_format.from_dict(display_date_format_dict)