/** * Webhook configuration for job completion notification */ export interface DocDigitizationWebhookCallback { /** HTTPS webhook URL to call upon job completion (HTTP not allowed) */ url: string; /** Authorization token sent as X-SARVAM-JOB-CALLBACK-TOKEN header */ auth_token?: string | undefined; }