Name | Type | Description | Notes |
---|---|---|---|
count | int |
from iblai.models.free_usage_count import FreeUsageCount
# TODO update the JSON string below
json = "{}"
# create an instance of FreeUsageCount from a JSON string
free_usage_count_instance = FreeUsageCount.from_json(json)
# print the JSON string representation of the object
print(FreeUsageCount.to_json())
# convert the object into a dict
free_usage_count_dict = free_usage_count_instance.to_dict()
# create an instance of FreeUsageCount from a dict
free_usage_count_from_dict = FreeUsageCount.from_dict(free_usage_count_dict)