Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.22 KB

File metadata and controls

34 lines (25 loc) · 1.22 KB

V0043Account

Properties

Name Type Description Notes
associations List[V0043AssocShort] [optional]
coordinators List[V0043Coord] [optional]
description str Arbitrary string describing the account
name str Account name
organization str Organization to which the account belongs
flags List[str] Flags associated with this account [optional]

Example

from slurmrest_python.models.v0043_account import V0043Account

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

# convert the object into a dict
v0043_account_dict = v0043_account_instance.to_dict()
# create an instance of V0043Account from a dict
v0043_account_from_dict = V0043Account.from_dict(v0043_account_dict)

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