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

V0042KillJobsRespJob

Properties

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

Example

from slurmrest_python.models.v0042_kill_jobs_resp_job import V0042KillJobsRespJob

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

# convert the object into a dict
v0042_kill_jobs_resp_job_dict = v0042_kill_jobs_resp_job_instance.to_dict()
# create an instance of V0042KillJobsRespJob from a dict
v0042_kill_jobs_resp_job_from_dict = V0042KillJobsRespJob.from_dict(v0042_kill_jobs_resp_job_dict)

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