Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 768 Bytes

Count.md

File metadata and controls

29 lines (20 loc) · 768 Bytes

Count

Properties

Name Type Description Notes
data CountData

Example

from iblai.models.count import Count

# TODO update the JSON string below
json = "{}"
# create an instance of Count from a JSON string
count_instance = Count.from_json(json)
# print the JSON string representation of the object
print(Count.to_json())

# convert the object into a dict
count_dict = count_instance.to_dict()
# create an instance of Count from a dict
count_from_dict = Count.from_dict(count_dict)

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