a webhook
| Name | Type | Description | Notes |
|---|---|---|---|
| url | str | Here you must place the URL of your Webhook remember that you must program what you will do with the events received. Also do not forget to handle the HTTPS protocol for greater security. | |
| subscribed_events | List[str] | events that will be sent to the webhook | [optional] |
from conekta.models.webhook_request import WebhookRequest
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookRequest from a JSON string
webhook_request_instance = WebhookRequest.from_json(json)
# print the JSON string representation of the object
print(WebhookRequest.to_json())
# convert the object into a dict
webhook_request_dict = webhook_request_instance.to_dict()
# create an instance of WebhookRequest from a dict
webhook_request_from_dict = WebhookRequest.from_dict(webhook_request_dict)