Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 906 Bytes

Project.md

File metadata and controls

31 lines (22 loc) · 906 Bytes

Project

A project

Properties

Name Type Description Notes
id str The internal ID of the project [optional] [readonly]
title str The title of the project [optional]

Example

from eliona.api_client2.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]