Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.08 KB

File metadata and controls

31 lines (22 loc) · 1.08 KB

V0042AccountsAddCond

Properties

Name Type Description Notes
accounts List[str]
association V0042AssocRecSet [optional]
clusters List[str] [optional]

Example

from slurmrest_python.models.v0042_accounts_add_cond import V0042AccountsAddCond

# TODO update the JSON string below
json = "{}"
# create an instance of V0042AccountsAddCond from a JSON string
v0042_accounts_add_cond_instance = V0042AccountsAddCond.from_json(json)
# print the JSON string representation of the object
print(V0042AccountsAddCond.to_json())

# convert the object into a dict
v0042_accounts_add_cond_dict = v0042_accounts_add_cond_instance.to_dict()
# create an instance of V0042AccountsAddCond from a dict
v0042_accounts_add_cond_from_dict = V0042AccountsAddCond.from_dict(v0042_accounts_add_cond_dict)

[Back to Model list] [Back to API list] [Back to README]