@theredspace/spp-client
    Preparing search index...

    Interface Filterset

    A filter set defines what data a user has permission to view or update. Read-only; supports the “all” read method.

    interface Filterset {
        active: "0" | "1";
        all_access: "0" | "1";
        created: string;
        default_filter_set: "0" | "1";
        externalid?: string;
        id: string;
        name: string;
        notes?: string;
        updated: string;
    }
    Index

    Properties

    active: "0" | "1"

    [Read-only] Indicates whether this filter set is active (1 = active).

    all_access: "0" | "1"

    [Read-only] If 1, this set allows all access and cannot be deleted.

    created: string

    [Read-only] Creation timestamp.

    default_filter_set: "0" | "1"

    [Read-only] If 1, this is the default new-user filterset.

    externalid?: string

    [Read-only] External system ID, if imported.

    id: string

    [Read-only] Unique ID.

    name: string

    [Read-only] Human-readable name.

    notes?: string

    [Read-only] Any notes attached to this filter set.

    updated: string

    [Read-only] Timestamp of last update.