Member Junction
    Preparing search index...

    Base shape for every Recycle Bin event.

    interface AfterRecordRestoreEventArgs {
        _kind: "afterRecordRestore";
        bin: unknown;
        entityName: string;
        entry: RecycleBinEntry;
        errorMessage?: string;
        success: boolean;
        timestamp: Date;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _kind: "afterRecordRestore"
    bin: unknown

    The Recycle Bin component instance that raised the event.

    entityName: string

    The entity the bin is operating on.

    entry

    errorMessage?: string

    Error message when success is false.

    success: boolean

    True when the underlying insert succeeded.

    timestamp: Date

    When the event was raised.