Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 856 Bytes

File metadata and controls

30 lines (21 loc) · 856 Bytes

TypeStats

Properties

Name Type Description Notes
type str [optional]
count int [optional]

Example

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)

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