Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 996 Bytes

File metadata and controls

30 lines (21 loc) · 996 Bytes

V0043PartPrio

Properties

Name Type Description Notes
partition str Partition name [optional]
priority int Prospective job priority if it runs in this partition [optional]

Example

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]