| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | [optional] | |
| count | int | [optional] |
from aerostack.models.type_stats import TypeStats
# TODO update the JSON string below
json = "{}"
# create an instance of TypeStats from a JSON string
type_stats_instance = TypeStats.from_json(json)
# print the JSON string representation of the object
print TypeStats.to_json()
# convert the object into a dict
type_stats_dict = type_stats_instance.to_dict()
# create an instance of TypeStats from a dict
type_stats_form_dict = type_stats.from_dict(type_stats_dict)