| Name | Type | Description | Notes |
|---|---|---|---|
| job_id | int | Submitted Job ID | [optional] |
| job_submit_user_msg | str | Job submission user message | [optional] |
| meta | V0041OpenapiSharesRespMeta | [optional] | |
| errors | List[V0041OpenapiSharesRespErrorsInner] | Query errors | [optional] |
| warnings | List[V0041OpenapiSharesRespWarningsInner] | Query warnings | [optional] |
from slurmrest_python.models.v0041_openapi_job_alloc_resp import V0041OpenapiJobAllocResp
# TODO update the JSON string below
json = "{}"
# create an instance of V0041OpenapiJobAllocResp from a JSON string
v0041_openapi_job_alloc_resp_instance = V0041OpenapiJobAllocResp.from_json(json)
# print the JSON string representation of the object
print(V0041OpenapiJobAllocResp.to_json())
# convert the object into a dict
v0041_openapi_job_alloc_resp_dict = v0041_openapi_job_alloc_resp_instance.to_dict()
# create an instance of V0041OpenapiJobAllocResp from a dict
v0041_openapi_job_alloc_resp_from_dict = V0041OpenapiJobAllocResp.from_dict(v0041_openapi_job_alloc_resp_dict)