Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.35 KB

UpdateWebhookRequest.md

File metadata and controls

32 lines (23 loc) · 1.35 KB

UpdateWebhookRequest

Properties

Name Type Description Notes
url str The url of the webhook where notifications will be sent. URL must be valid, unique and https. [optional]
description str description of the webhook of what it is used for.should not contain special characters. [optional]
events List[WebhookEvent] The events that the webhook will be subscribed to [optional]
enabled bool The status of the webhook [optional]

Example

from fireblocks.models.update_webhook_request import UpdateWebhookRequest

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

# convert the object into a dict
update_webhook_request_dict = update_webhook_request_instance.to_dict()
# create an instance of UpdateWebhookRequest from a dict
update_webhook_request_from_dict = UpdateWebhookRequest.from_dict(update_webhook_request_dict)

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