| Name | Type | Description | Notes |
|---|---|---|---|
| accounts | List[str] | [optional] | |
| association | V0042AssocRecSet | [optional] | |
| clusters | List[str] | [optional] | |
| partitions | List[str] | [optional] | |
| users | List[str] | ||
| wckeys | List[str] | [optional] |
from slurmrest_python.models.v0042_users_add_cond import V0042UsersAddCond
# TODO update the JSON string below
json = "{}"
# create an instance of V0042UsersAddCond from a JSON string
v0042_users_add_cond_instance = V0042UsersAddCond.from_json(json)
# print the JSON string representation of the object
print(V0042UsersAddCond.to_json())
# convert the object into a dict
v0042_users_add_cond_dict = v0042_users_add_cond_instance.to_dict()
# create an instance of V0042UsersAddCond from a dict
v0042_users_add_cond_from_dict = V0042UsersAddCond.from_dict(v0042_users_add_cond_dict)