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

V0043JobSubmitReq

Properties

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

Example

from slurmrest_python.models.v0043_job_submit_req import V0043JobSubmitReq

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

# convert the object into a dict
v0043_job_submit_req_dict = v0043_job_submit_req_instance.to_dict()
# create an instance of V0043JobSubmitReq from a dict
v0043_job_submit_req_from_dict = V0043JobSubmitReq.from_dict(v0043_job_submit_req_dict)

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