| Name |
Type |
Description |
Notes |
| execution_id |
str |
this is important for the tracking of the execution of the pipeline, it can be used with the /pipeline/{execution_id}/status |
[optional] |
| message |
str |
|
[optional] |
from imager200_python_sdk.models.success_response import SuccessResponse
# TODO update the JSON string below
json = "{}"
# create an instance of SuccessResponse from a JSON string
success_response_instance = SuccessResponse.from_json(json)
# print the JSON string representation of the object
print(SuccessResponse.to_json())
# convert the object into a dict
success_response_dict = success_response_instance.to_dict()
# create an instance of SuccessResponse from a dict
success_response_from_dict = SuccessResponse.from_dict(success_response_dict)
[Back to Model list] [Back to API list] [Back to README]