Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.19 KB

File metadata and controls

39 lines (30 loc) · 1.19 KB

Project

Properties

Name Type Description Notes
id str [optional]
title str [optional]
summary str [optional]
status str [optional]
category_id int [optional]
certification_authority_id int [optional]
country str [optional]
description str [optional]
goals str [optional]
images List[str] [optional]
benefits List[int] [optional]

Example

from klimapi_python.models.project import Project

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

# convert the object into a dict
project_dict = project_instance.to_dict()
# create an instance of Project from a dict
project_from_dict = Project.from_dict(project_dict)

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