| Name | Type | Description | Notes |
|---|---|---|---|
| time | V0042StepTime | [optional] | |
| exit_code | V0042ProcessExitCodeVerbose | [optional] | |
| nodes | V0042StepNodes | [optional] | |
| tasks | V0041OpenapiSlurmdbdJobsRespJobsInnerStepsInnerTasks | [optional] | |
| pid | str | Deprecated; Process ID | [optional] |
| cpu | V0042StepCPU | [optional] | |
| kill_request_user | str | User ID that requested termination of the step | [optional] |
| state | List[str] | [optional] | |
| statistics | V0042StepStatistics | [optional] | |
| step | V0041OpenapiSlurmdbdJobsRespJobsInnerStepsInnerStep | [optional] | |
| task | V0041OpenapiSlurmdbdJobsRespJobsInnerStepsInnerTask | [optional] | |
| tres | V0042StepTres | [optional] |
from slurmrest_python.models.v0042_step import V0042Step
# TODO update the JSON string below
json = "{}"
# create an instance of V0042Step from a JSON string
v0042_step_instance = V0042Step.from_json(json)
# print the JSON string representation of the object
print(V0042Step.to_json())
# convert the object into a dict
v0042_step_dict = v0042_step_instance.to_dict()
# create an instance of V0042Step from a dict
v0042_step_from_dict = V0042Step.from_dict(v0042_step_dict)