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

V0043StatsMsgRpcUser

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 V0043Uint64NoValStruct

Example

from slurmrest_python.models.v0043_stats_msg_rpc_user import V0043StatsMsgRpcUser

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

# convert the object into a dict
v0043_stats_msg_rpc_user_dict = v0043_stats_msg_rpc_user_instance.to_dict()
# create an instance of V0043StatsMsgRpcUser from a dict
v0043_stats_msg_rpc_user_from_dict = V0043StatsMsgRpcUser.from_dict(v0043_stats_msg_rpc_user_dict)

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