| Name | Type | Description | Notes |
|---|---|---|---|
| accounting | List[V0043Accounting] | [optional] | |
| account | str | Account name | [optional] |
| cluster | str | Cluster name | [optional] |
| comment | str | Arbitrary comment | [optional] |
| default | V0041OpenapiSlurmdbdConfigRespAssociationsInnerDefault | [optional] | |
| flags | List[str] | Flags on the association | [optional] |
| max | V0043AssocMax | [optional] | |
| id | int | Unique ID (Association ID) | [optional] |
| is_default | bool | Is default association for user | [optional] |
| lineage | str | Complete path up the hierarchy to the root association | [optional] |
| min | V0043AssocMin | [optional] | |
| parent_account | str | Name of parent account | [optional] |
| partition | str | Partition name | [optional] |
| priority | V0043Uint32NoValStruct | [optional] | |
| qos | List[str] | List of QOS names | [optional] |
| shares_raw | int | Allocated shares used for fairshare calculation | [optional] |
| user | str | User name |
from slurmrest_python.models.v0043_assoc import V0043Assoc
# TODO update the JSON string below
json = "{}"
# create an instance of V0043Assoc from a JSON string
v0043_assoc_instance = V0043Assoc.from_json(json)
# print the JSON string representation of the object
print(V0043Assoc.to_json())
# convert the object into a dict
v0043_assoc_dict = v0043_assoc_instance.to_dict()
# create an instance of V0043Assoc from a dict
v0043_assoc_from_dict = V0043Assoc.from_dict(v0043_assoc_dict)