Datetime of user creation
Name | Type | Description | Notes |
---|
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)