webhook keys model
| Name | Type | Description | Notes |
|---|---|---|---|
| active | bool | Indicates if the webhook key is active | [optional] |
| created_at | int | Unix timestamp in seconds with the creation date of the webhook key | [optional] |
| deleted | bool | Indicates if the webhook key is deleted | [optional] |
| id | str | Unique identifier of the webhook key | [optional] |
| livemode | bool | Indicates if the webhook key is in live mode | [optional] |
| object | str | Object name, value is webhook_key | [optional] |
from conekta.models.webhook_key_delete_response import WebhookKeyDeleteResponse
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookKeyDeleteResponse from a JSON string
webhook_key_delete_response_instance = WebhookKeyDeleteResponse.from_json(json)
# print the JSON string representation of the object
print(WebhookKeyDeleteResponse.to_json())
# convert the object into a dict
webhook_key_delete_response_dict = webhook_key_delete_response_instance.to_dict()
# create an instance of WebhookKeyDeleteResponse from a dict
webhook_key_delete_response_from_dict = WebhookKeyDeleteResponse.from_dict(webhook_key_delete_response_dict)