Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

V0043Wckey

Properties

Name Type Description Notes
accounting List[V0043Accounting] [optional]
cluster str Cluster name
id int Unique ID for this user-cluster-wckey combination [optional]
name str WCKey name
user str User name
flags List[str] Flags associated with this WCKey [optional]

Example

from slurmrest_python.models.v0043_wckey import V0043Wckey

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

# convert the object into a dict
v0043_wckey_dict = v0043_wckey_instance.to_dict()
# create an instance of V0043Wckey from a dict
v0043_wckey_from_dict = V0043Wckey.from_dict(v0043_wckey_dict)

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