| Name | Type | Description | Notes |
|---|---|---|---|
| count | int | Number of daily rollups since last_run | [optional] |
| last_run | int | Last time daily rollup ran (UNIX timestamp) (UNIX timestamp or time string recognized by Slurm (e.g., '[MM/DD[/YY]-]HH:MM[:SS]')) | [optional] |
| duration | V0041OpenapiSlurmdbdStatsRespStatisticsRollupsDailyDuration | [optional] |
from slurmrest_python.models.v0044_rollup_stats_daily import V0044RollupStatsDaily
# TODO update the JSON string below
json = "{}"
# create an instance of V0044RollupStatsDaily from a JSON string
v0044_rollup_stats_daily_instance = V0044RollupStatsDaily.from_json(json)
# print the JSON string representation of the object
print(V0044RollupStatsDaily.to_json())
# convert the object into a dict
v0044_rollup_stats_daily_dict = v0044_rollup_stats_daily_instance.to_dict()
# create an instance of V0044RollupStatsDaily from a dict
v0044_rollup_stats_daily_from_dict = V0044RollupStatsDaily.from_dict(v0044_rollup_stats_daily_dict)