Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

V0043StatsRpc

Properties

Name Type Description Notes
rpc str RPC type [optional]
count int Number of RPCs processed [optional]
time V0041OpenapiSlurmdbdStatsRespStatisticsRPCsInnerTime [optional]

Example

from slurmrest_python.models.v0043_stats_rpc import V0043StatsRpc

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

# convert the object into a dict
v0043_stats_rpc_dict = v0043_stats_rpc_instance.to_dict()
# create an instance of V0043StatsRpc from a dict
v0043_stats_rpc_from_dict = V0043StatsRpc.from_dict(v0043_stats_rpc_dict)

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