Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1011 Bytes

File metadata and controls

29 lines (20 loc) · 1011 Bytes

AppKeyListResponse

Properties

Name Type Description Notes
keys List[AppKey] List of returned keys. [optional]

Example

from sunshine_conversations_client.model.app_key_list_response import AppKeyListResponse

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

# convert the object into a dict
app_key_list_response_dict = app_key_list_response_instance.to_dict()
# create an instance of AppKeyListResponse from a dict
app_key_list_response_from_dict = AppKeyListResponse.from_dict(app_key_list_response_dict)

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