Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.4 KB

File metadata and controls

31 lines (22 loc) · 1.4 KB

ApplicationVersionsCollectionRep

Properties

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]

Example

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)

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