| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | [optional] |
from wordlift_client.models.manager_response import ManagerResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ManagerResponse from a JSON string
manager_response_instance = ManagerResponse.from_json(json)
# print the JSON string representation of the object
print(ManagerResponse.to_json())
# convert the object into a dict
manager_response_dict = manager_response_instance.to_dict()
# create an instance of ManagerResponse from a dict
manager_response_from_dict = ManagerResponse.from_dict(manager_response_dict)