Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

V0044StepNodes

Properties

Name Type Description Notes
count int Number of nodes in the job step [optional]
range str Node(s) allocated to the job step [optional]
list List[str] [optional]

Example

from slurmrest_python.models.v0044_step_nodes import V0044StepNodes

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

# convert the object into a dict
v0044_step_nodes_dict = v0044_step_nodes_instance.to_dict()
# create an instance of V0044StepNodes from a dict
v0044_step_nodes_from_dict = V0044StepNodes.from_dict(v0044_step_nodes_dict)

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