Name |
Type |
Description |
Notes |
message |
str |
Result message |
[optional] |
from formkiq_client.models.delete_api_key_response import DeleteApiKeyResponse
# TODO update the JSON string below
json = "{}"
# create an instance of DeleteApiKeyResponse from a JSON string
delete_api_key_response_instance = DeleteApiKeyResponse.from_json(json)
# print the JSON string representation of the object
print(DeleteApiKeyResponse.to_json())
# convert the object into a dict
delete_api_key_response_dict = delete_api_key_response_instance.to_dict()
# create an instance of DeleteApiKeyResponse from a dict
delete_api_key_response_from_dict = DeleteApiKeyResponse.from_dict(delete_api_key_response_dict)
[Back to Model list] [Back to API list] [Back to README]