Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

V0044RollupStats

Properties

Name Type Description Notes
hourly V0044RollupStatsHourly [optional]
daily V0044RollupStatsDaily [optional]
monthly V0044RollupStatsMonthly [optional]

Example

from slurmrest_python.models.v0044_rollup_stats import V0044RollupStats

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

# convert the object into a dict
v0044_rollup_stats_dict = v0044_rollup_stats_instance.to_dict()
# create an instance of V0044RollupStats from a dict
v0044_rollup_stats_from_dict = V0044RollupStats.from_dict(v0044_rollup_stats_dict)

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