Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 756 Bytes

File metadata and controls

29 lines (20 loc) · 756 Bytes

State

State of the user

Properties

Name Type Description Notes

Example

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)

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