Member Junction
    Preparing search index...

    Base shape for every Recycle Bin event.

    interface AfterRestoreCommitEventArgs {
        _kind: "afterRestoreCommit";
        bin: unknown;
        entityName: string;
        entry: RecycleBinEntry;
        errorMessage?: string;
        newRecordID?: string;
        success: boolean;
        timestamp: Date;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _kind: "afterRestoreCommit"
    bin: unknown

    The Recycle Bin component instance that raised the event.

    entityName: string

    The entity the bin is operating on.

    entry

    errorMessage?: string
    newRecordID?: string

    ID of the newly created record (when success).

    success: boolean
    timestamp: Date

    When the event was raised.