/** * @type WebhookRequest: Webhook request * * @property name: Webhook name * - **Pattern:** /^.*$/ * * @property url: Webhook URL * - **Pattern:** /^.*$/ * * @property secret: Webhook optional secret * - **Pattern:** /^.*$/ * */ export type WebhookRequest = { name: string; url: string; secret?: string; } & { [key: string]: any; };