Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 798 Bytes

Average.md

File metadata and controls

29 lines (20 loc) · 798 Bytes

Average

Properties

Name Type Description Notes
data AverageData

Example

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)

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