Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 938 Bytes

File metadata and controls

29 lines (20 loc) · 938 Bytes

V0040StepTask

Properties

Name Type Description Notes
distribution str The layout of the step was when it was running [optional]

Example

from slurm_api_client.models.v0040_step_task import V0040StepTask

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

# convert the object into a dict
v0040_step_task_dict = v0040_step_task_instance.to_dict()
# create an instance of V0040StepTask from a dict
v0040_step_task_from_dict = V0040StepTask.from_dict(v0040_step_task_dict)

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