Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.08 KB

File metadata and controls

33 lines (24 loc) · 1.08 KB

Project

Properties

Name Type Description Notes
id str Unique ID of the project [optional]
name str The machine name of the project [optional]
title str The human-readable title of the project [optional]
owner_id str The ID of the owner of this project [optional]
group_id str The ID of the group of this project [optional]

Example

from ibutsu_client.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]