| Name | Type | Description | Notes |
|---|---|---|---|
| accounting | List[V0041OpenapiSlurmdbdConfigRespUsersInnerWckeysInnerAccountingInner] | Accounting records containing related resource usage | [optional] |
| account | str | Account | [optional] |
| cluster | str | Cluster name | [optional] |
| comment | str | Arbitrary comment | [optional] |
| default | V0041OpenapiSlurmdbdConfigRespAssociationsInnerDefault | [optional] | |
| flags | List[str] | Flags on the association | [optional] |
| max | V0041OpenapiSlurmdbdConfigRespAssociationsInnerMax | [optional] | |
| id | int | Unique ID | [optional] |
| is_default | bool | Is default association for user | [optional] |
| lineage | str | Complete path up the hierarchy to the root association | [optional] |
| min | V0041OpenapiSlurmdbdConfigRespAssociationsInnerMin | [optional] | |
| parent_account | str | Name of parent account | [optional] |
| partition | str | Partition name | [optional] |
| priority | V0041OpenapiSlurmdbdConfigRespAssociationsInnerPriority | [optional] | |
| qos | List[str] | List of available QOS names | [optional] |
| shares_raw | int | Allocated shares used for fairshare calculation | [optional] |
| user | str | User name |
from slurmrest_python.models.v0041_openapi_slurmdbd_config_resp_associations_inner import V0041OpenapiSlurmdbdConfigRespAssociationsInner
# TODO update the JSON string below
json = "{}"
# create an instance of V0041OpenapiSlurmdbdConfigRespAssociationsInner from a JSON string
v0041_openapi_slurmdbd_config_resp_associations_inner_instance = V0041OpenapiSlurmdbdConfigRespAssociationsInner.from_json(json)
# print the JSON string representation of the object
print(V0041OpenapiSlurmdbdConfigRespAssociationsInner.to_json())
# convert the object into a dict
v0041_openapi_slurmdbd_config_resp_associations_inner_dict = v0041_openapi_slurmdbd_config_resp_associations_inner_instance.to_dict()
# create an instance of V0041OpenapiSlurmdbdConfigRespAssociationsInner from a dict
v0041_openapi_slurmdbd_config_resp_associations_inner_from_dict = V0041OpenapiSlurmdbdConfigRespAssociationsInner.from_dict(v0041_openapi_slurmdbd_config_resp_associations_inner_dict)