Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.09 KB

File metadata and controls

30 lines (21 loc) · 1.09 KB

RepositoryCollectionRep

Properties

Name Type Description Notes
links Dict[str, Link]
items List[RepositoryRep] An array of repositories

Example

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)

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