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