State of the user
| Name | Type | Description | Notes |
|---|
from onelens_backend_client.models.state import State
# TODO update the JSON string below
json = "{}"
# create an instance of State from a JSON string
state_instance = State.from_json(json)
# print the JSON string representation of the object
print(State.to_json())
# convert the object into a dict
state_dict = state_instance.to_dict()
# create an instance of State from a dict
state_form_dict = state.from_dict(state_dict)