Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

V0043UserShort

Properties

Name Type Description Notes
adminlevel List[str] AdminLevel granted to the user [optional]
defaultaccount str Default account [optional]
defaultwckey str Default WCKey [optional]

Example

from slurmrest_python.models.v0043_user_short import V0043UserShort

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

# convert the object into a dict
v0043_user_short_dict = v0043_user_short_instance.to_dict()
# create an instance of V0043UserShort from a dict
v0043_user_short_from_dict = V0043UserShort.from_dict(v0043_user_short_dict)

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