Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 798 Bytes

Timezone.md

File metadata and controls

29 lines (20 loc) · 798 Bytes

Timezone

Timezone of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.timezone import Timezone

# TODO update the JSON string below
json = "{}"
# create an instance of Timezone from a JSON string
timezone_instance = Timezone.from_json(json)
# print the JSON string representation of the object
print(Timezone.to_json())

# convert the object into a dict
timezone_dict = timezone_instance.to_dict()
# create an instance of Timezone from a dict
timezone_form_dict = timezone.from_dict(timezone_dict)

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