Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 831 Bytes

File metadata and controls

30 lines (21 loc) · 831 Bytes

AppsList

A list of apps.

Properties

Name Type Description Notes
apps List[App]

Example

from opal_security.models.apps_list import AppsList

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

# convert the object into a dict
apps_list_dict = apps_list_instance.to_dict()
# create an instance of AppsList from a dict
apps_list_from_dict = AppsList.from_dict(apps_list_dict)

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