Interface HistoryResponse

interface HistoryResponse {
    history: HistoryRow<keyof ReportTypesMap>[];
    static: {
        multiplicity: { [type: string]: number };
        versionByOrganization: ResponseStaticVersionBySubject[];
        versionByUser: { id: string; versions: number }[];
        versionsByDay: { count: number; date: string }[];
    };
}

Properties

Properties

history: HistoryRow<keyof ReportTypesMap>[]
static: {
    multiplicity: { [type: string]: number };
    versionByOrganization: ResponseStaticVersionBySubject[];
    versionByUser: { id: string; versions: number }[];
    versionsByDay: { count: number; date: string }[];
}