Name | Type | Description | Notes |
---|---|---|---|
average | float | Average |
from iblai.models.average_data import AverageData
# TODO update the JSON string below
json = "{}"
# create an instance of AverageData from a JSON string
average_data_instance = AverageData.from_json(json)
# print the JSON string representation of the object
print(AverageData.to_json())
# convert the object into a dict
average_data_dict = average_data_instance.to_dict()
# create an instance of AverageData from a dict
average_data_from_dict = AverageData.from_dict(average_data_dict)