| 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] |
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)