Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 957 Bytes

File metadata and controls

30 lines (21 loc) · 957 Bytes

StandardResponse

Properties

Name Type Description Notes
message str [optional]
error str [optional]

Example

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]