Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.17 KB

File metadata and controls

30 lines (22 loc) · 1.17 KB

SimpleResponseModel

Response schema that is used in cases that no asynchronous run was

Properties

Name Type Description Notes
status str The status of the resource, values: accepted, running, finished, terminated, error
message str A simple message to describes the status of the resource

Example

from actinia_openapi_python_client.models.simple_response_model import SimpleResponseModel

# TODO update the JSON string below
json = "{}"
# create an instance of SimpleResponseModel from a JSON string
simple_response_model_instance = SimpleResponseModel.from_json(json)
# print the JSON string representation of the object
print SimpleResponseModel.to_json()

# convert the object into a dict
simple_response_model_dict = simple_response_model_instance.to_dict()
# create an instance of SimpleResponseModel from a dict
simple_response_model_form_dict = simple_response_model.from_dict(simple_response_model_dict)

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