Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

V0041JobSubmitReq

Properties

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

Example

from slurmrest_python.models.v0041_job_submit_req import V0041JobSubmitReq

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

# convert the object into a dict
v0041_job_submit_req_dict = v0041_job_submit_req_instance.to_dict()
# create an instance of V0041JobSubmitReq from a dict
v0041_job_submit_req_from_dict = V0041JobSubmitReq.from_dict(v0041_job_submit_req_dict)

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