Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 951 Bytes

File metadata and controls

31 lines (22 loc) · 951 Bytes

Category

Properties

Name Type Description Notes
id int The id of the category [optional]
title str Title of the category [optional]
example_project object An example project [optional]

Example

from klimapi_python.models.category import Category

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

# convert the object into a dict
category_dict = category_instance.to_dict()
# create an instance of Category from a dict
category_from_dict = Category.from_dict(category_dict)

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