Skip to content

Latest commit

 

History

History
executable file
·
33 lines (24 loc) · 965 Bytes

Project.md

File metadata and controls

executable file
·
33 lines (24 loc) · 965 Bytes

Project

Project that this budget applies to

Properties

Name Type Description Notes
pk int [optional] [readonly]
project_id str [optional] [readonly]
description str [optional]
closed bool [optional]

Example

from epiccore.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_form_dict = project.from_dict(project_dict)

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