Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.31 KB

File metadata and controls

36 lines (27 loc) · 1.31 KB

V0043User

Properties

Name Type Description Notes
administrator_level List[str] AdminLevel granted to the user [optional]
associations List[V0043AssocShort] [optional]
coordinators List[V0043Coord] [optional]
default V0042UserDefault [optional]
flags List[str] Flags associated with this user [optional]
name str User name
old_name str Previous user name [optional]
wckeys List[V0043Wckey] [optional]

Example

from slurmrest_python.models.v0043_user import V0043User

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

# convert the object into a dict
v0043_user_dict = v0043_user_instance.to_dict()
# create an instance of V0043User from a dict
v0043_user_from_dict = V0043User.from_dict(v0043_user_dict)

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