Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

V0044JobSubmitReq

Properties

Name Type Description Notes
script str Job batch script contents; Same as the script field in jobs[0] or job. [optional]
jobs List[V0044JobDescMsg] [optional]
job V0044JobDescMsg [optional]

Example

from slurmrest_python.models.v0044_job_submit_req import V0044JobSubmitReq

# TODO update the JSON string below
json = "{}"
# create an instance of V0044JobSubmitReq from a JSON string
v0044_job_submit_req_instance = V0044JobSubmitReq.from_json(json)
# print the JSON string representation of the object
print(V0044JobSubmitReq.to_json())

# convert the object into a dict
v0044_job_submit_req_dict = v0044_job_submit_req_instance.to_dict()
# create an instance of V0044JobSubmitReq from a dict
v0044_job_submit_req_from_dict = V0044JobSubmitReq.from_dict(v0044_job_submit_req_dict)

[Back to Model list] [Back to API list] [Back to README]