import type * as Extend from "../index"; /** * Configuration for how webhook payloads are delivered. */ export interface WebhookPayloadOptions { format: Extend.WebhookPayloadFormat; /** When `format` is `url`, payloads larger than this threshold (in bytes) are delivered as a signed download URL instead of inline JSON. Only applicable when `format` is `url`. */ urlThresholdBytes?: number; }