Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

UpdateWebhook

an updated webhook

Properties

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. [optional]
subscribed_events List[str] events that will be sent to the webhook [optional]
active bool whether the webhook is active or not [optional]

Example

from conekta.models.update_webhook import UpdateWebhook

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

# convert the object into a dict
update_webhook_dict = update_webhook_instance.to_dict()
# create an instance of UpdateWebhook from a dict
update_webhook_from_dict = UpdateWebhook.from_dict(update_webhook_dict)

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