interface Report {
    _id?: string;
    additionalParameters?: Record<string, unknown>;
    createdDate?: Date;
    id?: string;
    job?: string | SavedJob;
    modifiedDate?: Date;
    path: string;
    type: ReportType;
    user: string | SavedUser;
}

Hierarchy (View Summary)

Properties

_id?: string
additionalParameters?: Record<string, unknown>
createdDate?: Date
id?: string

Use _id instead

job?: string | SavedJob
modifiedDate?: Date
path: string
user: string | SavedUser