| Name | Type | Description | Notes |
|---|---|---|---|
| grace_time | int | GraceTime | [optional] |
| max | V0042QosLimitsMax | [optional] | |
| factor | V0042Float64NoValStruct | [optional] | |
| min | V0042QosLimitsMin | [optional] |
from slurmrest_python.models.v0042_qos_limits import V0042QosLimits
# TODO update the JSON string below
json = "{}"
# create an instance of V0042QosLimits from a JSON string
v0042_qos_limits_instance = V0042QosLimits.from_json(json)
# print the JSON string representation of the object
print(V0042QosLimits.to_json())
# convert the object into a dict
v0042_qos_limits_dict = v0042_qos_limits_instance.to_dict()
# create an instance of V0042QosLimits from a dict
v0042_qos_limits_from_dict = V0042QosLimits.from_dict(v0042_qos_limits_dict)