| Name | Type | Description | Notes |
|---|---|---|---|
| links | Dict[str, Link] | The location and content type of related resources | [optional] |
| items | List[ApplicationVersionRep] | A list of the versions for this application | [optional] |
| total_count | int | The number of versions for this application | [optional] |
from launchdarkly_api.models.application_versions_collection_rep import ApplicationVersionsCollectionRep
# TODO update the JSON string below
json = "{}"
# create an instance of ApplicationVersionsCollectionRep from a JSON string
application_versions_collection_rep_instance = ApplicationVersionsCollectionRep.from_json(json)
# print the JSON string representation of the object
print(ApplicationVersionsCollectionRep.to_json())
# convert the object into a dict
application_versions_collection_rep_dict = application_versions_collection_rep_instance.to_dict()
# create an instance of ApplicationVersionsCollectionRep from a dict
application_versions_collection_rep_from_dict = ApplicationVersionsCollectionRep.from_dict(application_versions_collection_rep_dict)