Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.18 KB

File metadata and controls

34 lines (25 loc) · 1.18 KB

V0042Account

Properties

Name Type Description Notes
associations List[V0042AssocShort] [optional]
coordinators List[V0042Coord] [optional]
description str Arbitrary string describing the account
name str Account name
organization str Organization to which the account belongs
flags List[str] [optional]

Example

from slurmrest_python.models.v0042_account import V0042Account

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

# convert the object into a dict
v0042_account_dict = v0042_account_instance.to_dict()
# create an instance of V0042Account from a dict
v0042_account_from_dict = V0042Account.from_dict(v0042_account_dict)

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