| Name |
Type |
Description |
Notes |
| success |
bool |
|
[optional] |
| message |
str |
|
[optional] |
from bsubio.models.submit_job200_response import SubmitJob200Response
# TODO update the JSON string below
json = "{}"
# create an instance of SubmitJob200Response from a JSON string
submit_job200_response_instance = SubmitJob200Response.from_json(json)
# print the JSON string representation of the object
print(SubmitJob200Response.to_json())
# convert the object into a dict
submit_job200_response_dict = submit_job200_response_instance.to_dict()
# create an instance of SubmitJob200Response from a dict
submit_job200_response_from_dict = SubmitJob200Response.from_dict(submit_job200_response_dict)
[Back to Model list] [Back to API list] [Back to README]