Pinecone TypeScript SDK - v8.2.0
    Preparing search index...

    Interface User

    A user who is a member of the organization.

    User

    interface User {
        email: string;
        id: string;
        name?: string;
    }
    Index
    email: string

    The user's email address.

    User

    id: string

    The unique ID of the user.

    User

    name?: string

    The user's display name. Omitted from the response if the user has not set one.

    User