Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

InsightsRepositoryCollection

Properties

Name Type Description Notes
total_count int Total number of repositories
items List[InsightsRepository] List of repositories
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.insights_repository_collection import InsightsRepositoryCollection

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

# convert the object into a dict
insights_repository_collection_dict = insights_repository_collection_instance.to_dict()
# create an instance of InsightsRepositoryCollection from a dict
insights_repository_collection_from_dict = InsightsRepositoryCollection.from_dict(insights_repository_collection_dict)

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