# This file was auto-generated by Fern from our API Definition.

import typing_extensions


class DocDigitizationWebhookCallbackParams(typing_extensions.TypedDict):
    """
    Webhook configuration for job completion notification
    """

    url: str
    """
    HTTPS webhook URL to call upon job completion (HTTP not allowed)
    """

    auth_token: typing_extensions.NotRequired[str]
    """
    Authorization token sent as X-SARVAM-JOB-CALLBACK-TOKEN header
    """
