/** * @type WebhookResponse: Webhook response * * @property id: Webhook ID * - **Pattern:** /^.*$/ * * @property name: Webhook name * - **Pattern:** /^.*$/ * * @property url: Webhook URL * - **Pattern:** /^.*$/ * * @property type: Webhook type * - **Pattern:** /^.*$/ * * @property createdAt: Timestamp of webhook creation * * @property lastSuccess: Timestamp of the last successful notification * * @property lastFailure: Timestamp of the last failed notification * */ export type WebhookResponse = { id: string; name: string; url: string; type: string; createdAt: string; lastSuccess?: string; lastFailure?: string; } & { [key: string]: any; };