Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.2 KB

File metadata and controls

33 lines (24 loc) · 1.2 KB

V0042StatsMsgRpcUser

Properties

Name Type Description Notes
user_id int User ID (numeric)
user str User name
count int Number of RPCs received
total_time int Total time spent processing RPC in seconds
average_time V0042Uint64NoValStruct

Example

from slurmrest_python.models.v0042_stats_msg_rpc_user import V0042StatsMsgRpcUser

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

# convert the object into a dict
v0042_stats_msg_rpc_user_dict = v0042_stats_msg_rpc_user_instance.to_dict()
# create an instance of V0042StatsMsgRpcUser from a dict
v0042_stats_msg_rpc_user_from_dict = V0042StatsMsgRpcUser.from_dict(v0042_stats_msg_rpc_user_dict)

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