Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

V0044ProcessExitCodeVerbose

Properties

Name Type Description Notes
status List[str] Status given by return code [optional]
return_code V0044Uint32NoValStruct [optional]
signal V0044ProcessExitCodeVerboseSignal [optional]

Example

from slurmrest_python.models.v0044_process_exit_code_verbose import V0044ProcessExitCodeVerbose

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

# convert the object into a dict
v0044_process_exit_code_verbose_dict = v0044_process_exit_code_verbose_instance.to_dict()
# create an instance of V0044ProcessExitCodeVerbose from a dict
v0044_process_exit_code_verbose_from_dict = V0044ProcessExitCodeVerbose.from_dict(v0044_process_exit_code_verbose_dict)

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