Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

V0042OpenapiKillJobResp

Properties

Name Type Description Notes
status List[V0042KillJobsRespJob] List of jobs signal responses
meta V0042OpenapiMeta [optional]
errors List[V0042OpenapiError] [optional]
warnings List[V0042OpenapiWarning] [optional]

Example

from slurmrest_python.models.v0042_openapi_kill_job_resp import V0042OpenapiKillJobResp

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

# convert the object into a dict
v0042_openapi_kill_job_resp_dict = v0042_openapi_kill_job_resp_instance.to_dict()
# create an instance of V0042OpenapiKillJobResp from a dict
v0042_openapi_kill_job_resp_from_dict = V0042OpenapiKillJobResp.from_dict(v0042_openapi_kill_job_resp_dict)

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