| Name | Type | Description | Notes |
|---|---|---|---|
| script | str | Job batch script contents; Same as the script field in jobs[0] or job. | [optional] |
| jobs | List[V0042JobDescMsg] | [optional] | |
| job | V0042JobDescMsg | [optional] |
from slurmrest_python.models.v0042_job_submit_req import V0042JobSubmitReq
# TODO update the JSON string below
json = "{}"
# create an instance of V0042JobSubmitReq from a JSON string
v0042_job_submit_req_instance = V0042JobSubmitReq.from_json(json)
# print the JSON string representation of the object
print(V0042JobSubmitReq.to_json())
# convert the object into a dict
v0042_job_submit_req_dict = v0042_job_submit_req_instance.to_dict()
# create an instance of V0042JobSubmitReq from a dict
v0042_job_submit_req_from_dict = V0042JobSubmitReq.from_dict(v0042_job_submit_req_dict)