Represents a recently accessed resource

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

Properties

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

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

totalCount: number