| Name | Type | Description | Notes |
|---|---|---|---|
| apps | List[App] | List of returned apps. | [optional] |
| meta | Meta | [optional] | |
| links | Links | [optional] |
from sunshine_conversations_client.model.app_list_response import AppListResponse
# TODO update the JSON string below
json = "{}"
# create an instance of AppListResponse from a JSON string
app_list_response_instance = AppListResponse.from_json(json)
# print the JSON string representation of the object
print(AppListResponse.to_json())
# convert the object into a dict
app_list_response_dict = app_list_response_instance.to_dict()
# create an instance of AppListResponse from a dict
app_list_response_from_dict = AppListResponse.from_dict(app_list_response_dict)