Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.6 KB

WebhookUpdate.md

File metadata and controls

35 lines (26 loc) · 1.6 KB

WebhookUpdate

Properties

Name Type Description Notes
active bool Boolean to indicate if the webhook is active [optional]
delivery WebhookDelivery [optional]
response WebhookResponse [optional]
secret str A 24-character secret for the webhook. It's generated by Firefly III when saving a new webhook. If you submit a new secret through the PUT endpoint it will generate a new secret for the selected webhook, a new secret bearing no relation to whatever you just submitted. [optional]
title str A title for the webhook for easy recognition. [optional]
trigger WebhookTrigger [optional]
url str The URL of the webhook. Has to start with `https`. [optional]

Example

from firefly_iii_client.models.webhook_update import WebhookUpdate

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

# convert the object into a dict
webhook_update_dict = webhook_update_instance.to_dict()
# create an instance of WebhookUpdate from a dict
webhook_update_form_dict = webhook_update.from_dict(webhook_update_dict)

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