Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 876 Bytes

FreeUsageCount.md

File metadata and controls

29 lines (20 loc) · 876 Bytes

FreeUsageCount

Properties

Name Type Description Notes
count int

Example

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)

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