| Name | Type | Description | Notes |
|---|---|---|---|
| result | V0040JobSubmitResponseMsg | [optional] | |
| job_id | int | Submitted Job ID | [optional] |
| step_id | str | Submitted Step ID | [optional] |
| job_submit_user_msg | str | job submision user message | [optional] |
| meta | V0040OpenapiMeta | [optional] | |
| errors | List[V0040OpenapiError] | [optional] | |
| warnings | List[V0040OpenapiWarning] | [optional] |
from slurm_api_client.models.v0040_openapi_job_submit_response import V0040OpenapiJobSubmitResponse
# TODO update the JSON string below
json = "{}"
# create an instance of V0040OpenapiJobSubmitResponse from a JSON string
v0040_openapi_job_submit_response_instance = V0040OpenapiJobSubmitResponse.from_json(json)
# print the JSON string representation of the object
print(V0040OpenapiJobSubmitResponse.to_json())
# convert the object into a dict
v0040_openapi_job_submit_response_dict = v0040_openapi_job_submit_response_instance.to_dict()
# create an instance of V0040OpenapiJobSubmitResponse from a dict
v0040_openapi_job_submit_response_from_dict = V0040OpenapiJobSubmitResponse.from_dict(v0040_openapi_job_submit_response_dict)