Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 940 Bytes

File metadata and controls

29 lines (20 loc) · 940 Bytes

DisplayDateFormat

Display date format of the user

Properties

Name Type Description Notes

Example

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)

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