Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

V0042AssocMax

Properties

Name Type Description Notes
jobs V0042AssocMaxJobs [optional]
tres V0042AssocMaxTres [optional]
per V0042AssocMaxPer [optional]

Example

from slurmrest_python.models.v0042_assoc_max import V0042AssocMax

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

# convert the object into a dict
v0042_assoc_max_dict = v0042_assoc_max_instance.to_dict()
# create an instance of V0042AssocMax from a dict
v0042_assoc_max_from_dict = V0042AssocMax.from_dict(v0042_assoc_max_dict)

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