/* * Automatically generated by codegen/smith.ts. * Do not edit this file. */ /** * Represents a [webhook](https://docs.seam.co/developer-tools/webhooks) that enables you to receive notifications of events. When you create a webhook, specify the endpoint URL at which you want to receive events and the set of event types that you want to receive. */ export type Webhook = { /** * Types of events that the [webhook](https://docs.seam.co/developer-tools/webhooks) should receive. */ event_types?: Array | undefined /** * Secret associated with the [webhook](https://docs.seam.co/developer-tools/webhooks). */ secret?: string | undefined /** * URL for the [webhook](https://docs.seam.co/developer-tools/webhooks). */ url: string /** * ID of the webhook. */ webhook_id: string }