Name | Type | Description | Notes |
---|---|---|---|
count | int | Total |
from iblai.models.count_data import CountData
# TODO update the JSON string below
json = "{}"
# create an instance of CountData from a JSON string
count_data_instance = CountData.from_json(json)
# print the JSON string representation of the object
print(CountData.to_json())
# convert the object into a dict
count_data_dict = count_data_instance.to_dict()
# create an instance of CountData from a dict
count_data_from_dict = CountData.from_dict(count_data_dict)