Langfuse JS/TS SDKs
    Preparing search index...

    Interface Comment

    interface Comment {
        authorUserId?: string;
        content: string;
        createdAt: string;
        dataField?: string;
        id: string;
        objectId: string;
        objectType: CommentObjectType;
        path?: string[];
        projectId: string;
        rangeEnd?: number[];
        rangeStart?: number[];
        updatedAt: string;
    }
    Index

    Properties

    authorUserId?: string
    content: string
    createdAt: string
    dataField?: string

    For inline comments, the IO field (input, output, metadata)

    id: string
    objectId: string
    objectType: CommentObjectType
    path?: string[]

    JSON Path expressions for comment location

    projectId: string
    rangeEnd?: number[]

    End character offsets (exclusive, UTF-16)

    rangeStart?: number[]

    Start character offsets (inclusive, UTF-16)

    updatedAt: string