import type { EventKindsEnum } from "./EventKindsEnum"; export type WebhookCreate = { enabled?: boolean; /** * The webhook title. */ title?: string; /** * The URL that webhook events will be sent to. */ url: string; /** * The event kinds that will trigger the webhook. */ eventKinds: Array; };