Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.33 KB

File metadata and controls

36 lines (27 loc) · 1.33 KB

V0044StepStep

Properties

Name Type Description Notes
id str Step ID (Slurm job step ID) [optional]
name str Step name [optional]
stderr str Path to stderr file [optional]
stdin str Path to stdin file [optional]
stdout str Path to stdout file [optional]
stderr_expanded str Step stderr with expanded fields [optional]
stdin_expanded str Step stdin with expanded fields [optional]
stdout_expanded str Step stdout with expanded fields [optional]

Example

from slurmrest_python.models.v0044_step_step import V0044StepStep

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

# convert the object into a dict
v0044_step_step_dict = v0044_step_step_instance.to_dict()
# create an instance of V0044StepStep from a dict
v0044_step_step_from_dict = V0044StepStep.from_dict(v0044_step_step_dict)

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