Nutrient Web SDK
    Preparing search index...

    Interface CommentJSON

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

    Hierarchy

    • ICollaboratorPermissionsOptions
      • CommentJSON
    Index

    Properties

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