Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.32 KB

File metadata and controls

32 lines (23 loc) · 1.32 KB

V0043KillJobsRespJob

Properties

Name Type Description Notes
error V0041OpenapiKillJobsRespStatusInnerError [optional]
step_id str Job or Step ID that signaling failed
job_id V0043Uint32NoValStruct
federation V0041OpenapiKillJobsRespStatusInnerFederation [optional]

Example

from slurmrest_python.models.v0043_kill_jobs_resp_job import V0043KillJobsRespJob

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

# convert the object into a dict
v0043_kill_jobs_resp_job_dict = v0043_kill_jobs_resp_job_instance.to_dict()
# create an instance of V0043KillJobsRespJob from a dict
v0043_kill_jobs_resp_job_from_dict = V0043KillJobsRespJob.from_dict(v0043_kill_jobs_resp_job_dict)

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