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

import typing_extensions


class DocDigitizationPageErrorParams(typing_extensions.TypedDict):
    """
    Error details for a specific page.
    """

    page_number: int
    """
    Page number that failed
    """

    error_code: str
    """
    Standardized error code
    """

    error_message: str
    """
    Human-readable error description
    """
