Display time format of the user
Name | Type | Description | Notes |
---|
from onelens_backend_client.models.display_time_format import DisplayTimeFormat
# TODO update the JSON string below
json = "{}"
# create an instance of DisplayTimeFormat from a JSON string
display_time_format_instance = DisplayTimeFormat.from_json(json)
# print the JSON string representation of the object
print(DisplayTimeFormat.to_json())
# convert the object into a dict
display_time_format_dict = display_time_format_instance.to_dict()
# create an instance of DisplayTimeFormat from a dict
display_time_format_form_dict = display_time_format.from_dict(display_time_format_dict)