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

V0043StatsRec

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 V0043RollupStats [optional]
rpcs List[V0043StatsRpc] [optional]
users List[V0043StatsUser] [optional]

Example

from slurmrest_python.models.v0043_stats_rec import V0043StatsRec

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

# convert the object into a dict
v0043_stats_rec_dict = v0043_stats_rec_instance.to_dict()
# create an instance of V0043StatsRec from a dict
v0043_stats_rec_from_dict = V0043StatsRec.from_dict(v0043_stats_rec_dict)

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