| Name | Type | Description | Notes |
|---|---|---|---|
| description | str | Arbitrary description | [optional] |
| flags | List[str] | Flags, to avoid modifying current values specify NOT_SET | [optional] |
| id | int | Unique ID | [optional] |
| limits | V0044QosLimits | [optional] | |
| name | str | Name | [optional] |
| preempt | V0044QosPreempt | [optional] | |
| priority | V0044Uint32NoValStruct | [optional] | |
| usage_factor | V0044Float64NoValStruct | [optional] | |
| usage_threshold | V0044Float64NoValStruct | [optional] |
from slurmrest_python.models.v0044_qos import V0044Qos
# TODO update the JSON string below
json = "{}"
# create an instance of V0044Qos from a JSON string
v0044_qos_instance = V0044Qos.from_json(json)
# print the JSON string representation of the object
print(V0044Qos.to_json())
# convert the object into a dict
v0044_qos_dict = v0044_qos_instance.to_dict()
# create an instance of V0044Qos from a dict
v0044_qos_from_dict = V0044Qos.from_dict(v0044_qos_dict)