Nutrient Web SDK
    Preparing search index...

    Interface ButtonFormFieldJSON

    interface ButtonFormFieldJSON {
        additionalActions?:
            | {
                [key: string]: { type: string; [key: string]: unknown }
                | undefined;
            }
            | null;
        annotationIds: string[];
        buttonLabel: string
        | null;
        flags?: ("readOnly" | "required" | "noExport")[];
        group?: IGroup;
        id: string;
        label: string;
        name: string;
        pdfObjectId?: number | null;
        permissions?: {
            delete: boolean;
            edit: boolean;
            fill?: boolean;
            reply?: boolean;
            setGroup: boolean;
        };
        type: "pspdfkit/form-field/button";
        v: 1;
    }

    Hierarchy

    • BaseFormFieldJSON
      • ButtonFormFieldJSON
    Index

    Properties

    additionalActions?:
        | {
            [key: string]: { type: string; [key: string]: unknown }
            | undefined;
        }
        | null
    annotationIds: string[]
    buttonLabel: string | null
    flags?: ("readOnly" | "required" | "noExport")[]
    group?: IGroup
    id: string
    label: string
    name: string
    pdfObjectId?: number | null
    permissions?: {
        delete: boolean;
        edit: boolean;
        fill?: boolean;
        reply?: boolean;
        setGroup: boolean;
    }
    type: "pspdfkit/form-field/button"
    v: 1