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

import typing

import typing_extensions


class AgentV1ErrorParams(typing_extensions.TypedDict):
    type: typing.Literal["Error"]
    """
    Message type identifier for error responses
    """

    description: str
    """
    A description of what went wrong
    """

    code: str
    """
    Error code identifying the type of error
    """
