Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.16 KB

File metadata and controls

29 lines (20 loc) · 1.16 KB

IntegrationApiKeyListResponse

Properties

Name Type Description Notes
keys List[ApiKey] Integration keys of the supplied integration. [optional]

Example

from sunshine_conversations_client.model.integration_api_key_list_response import IntegrationApiKeyListResponse

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

# convert the object into a dict
integration_api_key_list_response_dict = integration_api_key_list_response_instance.to_dict()
# create an instance of IntegrationApiKeyListResponse from a dict
integration_api_key_list_response_from_dict = IntegrationApiKeyListResponse.from_dict(integration_api_key_list_response_dict)

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