Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 940 Bytes

DisplayTimeFormat.md

File metadata and controls

29 lines (20 loc) · 940 Bytes

DisplayTimeFormat

Display time format of the user

Properties

Name Type Description Notes

Example

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)

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