Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

File metadata and controls

31 lines (22 loc) · 1.24 KB

ApplicationCollectionRep

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources [optional]
items List[ApplicationRep] A list of applications [optional]
total_count int The number of applications [optional]

Example

from launchdarkly_api.models.application_collection_rep import ApplicationCollectionRep

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

# convert the object into a dict
application_collection_rep_dict = application_collection_rep_instance.to_dict()
# create an instance of ApplicationCollectionRep from a dict
application_collection_rep_from_dict = ApplicationCollectionRep.from_dict(application_collection_rep_dict)

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