| Name | Type | Description | Notes |
|---|---|---|---|
| links | Dict[str, Link] | ||
| items | List[RepositoryRep] | An array of repositories |
from launchdarkly_api.models.repository_collection_rep import RepositoryCollectionRep
# TODO update the JSON string below
json = "{}"
# create an instance of RepositoryCollectionRep from a JSON string
repository_collection_rep_instance = RepositoryCollectionRep.from_json(json)
# print the JSON string representation of the object
print(RepositoryCollectionRep.to_json())
# convert the object into a dict
repository_collection_rep_dict = repository_collection_rep_instance.to_dict()
# create an instance of RepositoryCollectionRep from a dict
repository_collection_rep_from_dict = RepositoryCollectionRep.from_dict(repository_collection_rep_dict)