Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

File metadata and controls

31 lines (22 loc) · 1.03 KB

AppListResponse

Properties

Name Type Description Notes
apps List[App] List of returned apps. [optional]
meta Meta [optional]
links Links [optional]

Example

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)

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