Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.05 KB

File metadata and controls

32 lines (23 loc) · 1.05 KB

ProjectSummary

Properties

Name Type Description Notes
id str The ID of this project
links Dict[str, Link] The location and content type of related resources
key str The project key
name str The project name

Example

from launchdarkly_api.models.project_summary import ProjectSummary

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

# convert the object into a dict
project_summary_dict = project_summary_instance.to_dict()
# create an instance of ProjectSummary from a dict
project_summary_from_dict = ProjectSummary.from_dict(project_summary_dict)

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