Nutrient Web SDK
    Preparing search index...

    Interface CommentJSON

    interface CommentJSON {
        createdAt: string | Date;
        creatorName?: string | null;
        customData?: { [key: string]: unknown } | null;
        group?: IGroup;
        id?: string | null;
        isAnonymous?: boolean | null;
        name?: string | null;
        pageIndex: number | null;
        pdfObjectId?: number | null;
        permissions?: {
            delete: boolean;
            edit: boolean;
            fill?: boolean;
            reply?: boolean;
            setGroup: boolean;
        };
        rootId: string
        | number
        | null;
        text: { format: "xhtml" | "plain"; value: string | null };
        type: "pspdfkit/comment";
        updatedAt: string | Date;
        v: 2;
    }

    Hierarchy

    • ICollaboratorPermissionsOptions
      • CommentJSON
    Index

    Properties

    createdAt: string | Date
    creatorName?: string | null
    customData?: { [key: string]: unknown } | null
    group?: IGroup
    id?: string | null
    isAnonymous?: boolean | null
    name?: string | null
    pageIndex: number | null
    pdfObjectId?: number | null
    permissions?: {
        delete: boolean;
        edit: boolean;
        fill?: boolean;
        reply?: boolean;
        setGroup: boolean;
    }
    rootId: string | number | null
    text: { format: "xhtml" | "plain"; value: string | null }
    type: "pspdfkit/comment"
    updatedAt: string | Date
    v: 2