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