| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The id of the webhook | |
| url | str | The url of the webhook where notifications will be sent. Must be a valid URL and https. | |
| description | str | description of the webhook of what it is used for | [optional] |
| events | List[WebhookEvent] | The events that the webhook will be subscribed to | |
| status | str | The status of the webhook | |
| created_at | int | The date and time the webhook was created in milliseconds | |
| updated_at | int | The date and time the webhook was last updated in milliseconds | |
| mtls | WebhookMtls | [optional] | |
| oauth | WebhookOAuthResponse | [optional] | |
| custom_headers | List[str] | Names of the custom headers configured for this webhook. Header values are never returned. | [optional] |
from fireblocks.models.webhook import Webhook
# TODO update the JSON string below
json = "{}"
# create an instance of Webhook from a JSON string
webhook_instance = Webhook.from_json(json)
# print the JSON string representation of the object
print(Webhook.to_json())
# convert the object into a dict
webhook_dict = webhook_instance.to_dict()
# create an instance of Webhook from a dict
webhook_from_dict = Webhook.from_dict(webhook_dict)