| Name | Type | Description | Notes |
|---|---|---|---|
| jobs | V0043AssocMaxJobs | [optional] | |
| tres | V0043AssocMaxTres | [optional] | |
| per | V0043AssocMaxPer | [optional] |
from slurmrest_python.models.v0043_assoc_max import V0043AssocMax
# TODO update the JSON string below
json = "{}"
# create an instance of V0043AssocMax from a JSON string
v0043_assoc_max_instance = V0043AssocMax.from_json(json)
# print the JSON string representation of the object
print(V0043AssocMax.to_json())
# convert the object into a dict
v0043_assoc_max_dict = v0043_assoc_max_instance.to_dict()
# create an instance of V0043AssocMax from a dict
v0043_assoc_max_from_dict = V0043AssocMax.from_dict(v0043_assoc_max_dict)