from launchdarkly_api.models.statistics_root import StatisticsRoot
# TODO update the JSON string below
json = "{}"
# create an instance of StatisticsRoot from a JSON string
statistics_root_instance = StatisticsRoot.from_json(json)
# print the JSON string representation of the object
print(StatisticsRoot.to_json())
# convert the object into a dict
statistics_root_dict = statistics_root_instance.to_dict()
# create an instance of StatisticsRoot from a dict
statistics_root_from_dict = StatisticsRoot.from_dict(statistics_root_dict)