Member Junction
    Preparing search index...

    Represents a recently accessed resource

    interface RecentAccessItem {
        entityId: string;
        entityName: string;
        id: string;
        latestAt: Date;
        recordId: string;
        recordName?: string;
        resourceType: "record" | "view" | "report" | "dashboard" | "artifact";
        totalCount: number;
    }
    Index

    Properties

    entityId: string
    entityName: string
    id: string
    latestAt: Date
    recordId: string
    recordName?: string
    resourceType: "record" | "view" | "report" | "dashboard" | "artifact"

    Resource type for special handling (record, view, dashboard, artifact)

    totalCount: number