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

import typing_extensions
from ..types.doc_digitization_error_code import DocDigitizationErrorCode


class DocDigitizationErrorDetailsParams(typing_extensions.TypedDict):
    message: str
    """
    Message describing the error
    """

    code: DocDigitizationErrorCode
    """
    Error code for the specific error that has occurred.
    """

    request_id: typing_extensions.NotRequired[str]
    """
    Unique identifier for the request. Format: date_UUID4
    """
