Member Junction
    Preparing search index...

    Base shape for every Recycle Bin event.

    interface AfterRecycleBinOpenEventArgs {
        _kind: "afterRecycleBinOpen";
        bin: unknown;
        deletedRecordCount: number;
        entityName: string;
        timestamp: Date;
    }

    Hierarchy (View Summary)

    Index

    Properties

    _kind: "afterRecycleBinOpen"
    bin: unknown

    The Recycle Bin component instance that raised the event.

    deletedRecordCount: number

    Number of distinct deleted records discovered when the bin opened.

    entityName: string

    The entity the bin is operating on.

    timestamp: Date

    When the event was raised.