LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
  • LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    LangGraph Checkpoint
    LangGraph Store
    Checkpoint Postgres
    Store Postgres
    Checkpoint SQLite
    LangGraph Prebuilt
    LangGraph CLI
    LangGraph SDK
    LangGraph Supervisor
    LangGraph Swarm
    Language
    Theme
    Pythonlanggraph-sdkauthtypesMinimalUserDict
    Class●Since v0.1

    MinimalUserDict

    Copy
    MinimalUserDict()

    Bases

    typing.TypedDict

    Constructors

    Attributes

    View source on GitHub
    constructor
    __init__
    NameType
    identitytyping_extensions.Required[str]
    display_namestr
    is_authenticatedbool
    permissionsSequence[str]
    attribute
    identity: typing_extensions.Required[str]

    The required unique identifier for the user.

    attribute
    display_name: str

    The typing.Optional display name for the user.

    attribute
    is_authenticated: bool

    Whether the user is authenticated. Defaults to True.

    attribute
    permissions: Sequence[str]

    A list of permissions associated with the user.

    You can use these in your @auth.on authorization logic to determine access permissions to different resources.

    The dictionary representation of a user.