| Name | Type | Description | Notes |
|---|---|---|---|
| clusters | List[V0044ClusterRec] | [optional] | |
| tres | List[V0044Tres] | [optional] | |
| accounts | List[V0044Account] | [optional] | |
| users | List[V0044User] | [optional] | |
| qos | List[V0044Qos] | [optional] | |
| wckeys | List[V0044Wckey] | [optional] | |
| associations | List[V0044Assoc] | [optional] | |
| instances | List[V0044Instance] | [optional] | |
| meta | V0044OpenapiMeta | [optional] | |
| errors | List[V0044OpenapiError] | [optional] | |
| warnings | List[V0044OpenapiWarning] | [optional] |
from slurmrest_python.models.v0044_openapi_slurmdbd_config_resp import V0044OpenapiSlurmdbdConfigResp
# TODO update the JSON string below
json = "{}"
# create an instance of V0044OpenapiSlurmdbdConfigResp from a JSON string
v0044_openapi_slurmdbd_config_resp_instance = V0044OpenapiSlurmdbdConfigResp.from_json(json)
# print the JSON string representation of the object
print(V0044OpenapiSlurmdbdConfigResp.to_json())
# convert the object into a dict
v0044_openapi_slurmdbd_config_resp_dict = v0044_openapi_slurmdbd_config_resp_instance.to_dict()
# create an instance of V0044OpenapiSlurmdbdConfigResp from a dict
v0044_openapi_slurmdbd_config_resp_from_dict = V0044OpenapiSlurmdbdConfigResp.from_dict(v0044_openapi_slurmdbd_config_resp_dict)