Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 823 Bytes

CreatedAt.md

File metadata and controls

29 lines (20 loc) · 823 Bytes

CreatedAt

Datetime of user creation

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.created_at import CreatedAt

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

# convert the object into a dict
created_at_dict = created_at_instance.to_dict()
# create an instance of CreatedAt from a dict
created_at_form_dict = created_at.from_dict(created_at_dict)

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