Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 784 Bytes

Manager.md

File metadata and controls

29 lines (20 loc) · 784 Bytes

Manager

Manager of the user

Properties

Name Type Description Notes

Example

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)

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