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

NameTypeDescriptionNotes
idstr[optional]
titlestr[optional]
summarystr[optional]
statusstr[optional]
category_idint[optional]
certification_authority_idint[optional]
countrystr[optional]
descriptionstr[optional]
goalsstr[optional]
imagesList[str][optional]
benefitsList[int][optional]

Example

fromklimapi_python.models.projectimportProject# TODO update the JSON string belowjson="{}"# create an instance of Project from a JSON stringproject_instance=Project.from_json(json)
# print the JSON string representation of the objectprint(Project.to_json())
# convert the object into a dictproject_dict=project_instance.to_dict()
# create an instance of Project from a dictproject_from_dict=Project.from_dict(project_dict)

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