Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 810 Bytes

CountData.md

File metadata and controls

29 lines (20 loc) · 810 Bytes

CountData

Properties

Name Type Description Notes
count int Total

Example

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)

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