Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.22 KB

File metadata and controls

32 lines (23 loc) · 1.22 KB

V0044StatsRec

Properties

Name Type Description Notes
time_start int When data collection started (UNIX timestamp) (UNIX timestamp or time string recognized by Slurm (e.g., '[MM/DD[/YY]-]HH:MM[:SS]')) [optional]
rollups V0044RollupStats [optional]
rpcs List[V0044StatsRpc] [optional]
users List[V0044StatsUser] [optional]

Example

from slurmrest_python.models.v0044_stats_rec import V0044StatsRec

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

# convert the object into a dict
v0044_stats_rec_dict = v0044_stats_rec_instance.to_dict()
# create an instance of V0044StatsRec from a dict
v0044_stats_rec_from_dict = V0044StatsRec.from_dict(v0044_stats_rec_dict)

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