Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.05 KB

File metadata and controls

29 lines (20 loc) · 1.05 KB

IntegrationApiKeyResponse

Properties

Name Type Description Notes
key ApiKey [optional]

Example

from sunshine_conversations_client.model.integration_api_key_response import IntegrationApiKeyResponse

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

# convert the object into a dict
integration_api_key_response_dict = integration_api_key_response_instance.to_dict()
# create an instance of IntegrationApiKeyResponse from a dict
integration_api_key_response_from_dict = IntegrationApiKeyResponse.from_dict(integration_api_key_response_dict)

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