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

import typing_extensions
from ..types.error_code import ErrorCode


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

    code: ErrorCode
    """
    Error code for the specific error that has occured. Refer to the error code documentation for more details.
    """

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