an updated 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. | |
synchronous | bool | It is a value that allows to decide if the events will be synchronous or asynchronous. We recommend asynchronous = false | [optional] [default to False] |
events | List[str] | [optional] |
from conekta.models.webhook_update_request import WebhookUpdateRequest
# TODO update the JSON string below
json = "{}"
# create an instance of WebhookUpdateRequest from a JSON string
webhook_update_request_instance = WebhookUpdateRequest.from_json(json)
# print the JSON string representation of the object
print(WebhookUpdateRequest.to_json())
# convert the object into a dict
webhook_update_request_dict = webhook_update_request_instance.to_dict()
# create an instance of WebhookUpdateRequest from a dict
webhook_update_request_from_dict = WebhookUpdateRequest.from_dict(webhook_update_request_dict)