Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 842 Bytes

AverageData.md

File metadata and controls

29 lines (20 loc) · 842 Bytes

AverageData

Properties

Name Type Description Notes
average float Average

Example

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)

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