| Name |
Type |
Description |
Notes |
| partition |
str |
Partition name |
[optional] |
| priority |
int |
Prospective job priority if it runs in this partition |
[optional] |
from slurmrest_python.models.v0043_part_prio import V0043PartPrio
# TODO update the JSON string below
json = "{}"
# create an instance of V0043PartPrio from a JSON string
v0043_part_prio_instance = V0043PartPrio.from_json(json)
# print the JSON string representation of the object
print(V0043PartPrio.to_json())
# convert the object into a dict
v0043_part_prio_dict = v0043_part_prio_instance.to_dict()
# create an instance of V0043PartPrio from a dict
v0043_part_prio_from_dict = V0043PartPrio.from_dict(v0043_part_prio_dict)
[Back to Model list] [Back to API list] [Back to README]