Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.12 KB

File metadata and controls

31 lines (22 loc) · 1.12 KB

ProjectSummaryCollection

Properties

Name Type Description Notes
total_count int
items List[ProjectSummary]
links Dict[str, Link] [optional]

Example

from launchdarkly_api.models.project_summary_collection import ProjectSummaryCollection

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

# convert the object into a dict
project_summary_collection_dict = project_summary_collection_instance.to_dict()
# create an instance of ProjectSummaryCollection from a dict
project_summary_collection_from_dict = ProjectSummaryCollection.from_dict(project_summary_collection_dict)

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