| Name |
Type |
Description |
Notes |
| message |
str |
|
[optional] |
| error |
str |
|
[optional] |
from workplace_client.models.standard_response import StandardResponse
# TODO update the JSON string below
json = "{}"
# create an instance of StandardResponse from a JSON string
standard_response_instance = StandardResponse.from_json(json)
# print the JSON string representation of the object
print(StandardResponse.to_json())
# convert the object into a dict
standard_response_dict = standard_response_instance.to_dict()
# create an instance of StandardResponse from a dict
standard_response_from_dict = StandardResponse.from_dict(standard_response_dict)
[Back to Model list] [Back to API list] [Back to README]