apps/recallassess/recallassess-api/src/api/admin/report/reports/participant-progress-summary/participant-progress-summary.dto.ts
One row inside ParticipantProgressSummaryReportVm.rows / summary list queries.
Properties |
| course_completed_at |
course_completed_at:
|
Type : string | null
|
| course_title |
course_title:
|
Type : string
|
| e_learning_progress_percentage |
e_learning_progress_percentage:
|
Type : number | null
|
| e_learning_status_label |
e_learning_status_label:
|
Type : string
|
| enrollment_status_label |
enrollment_status_label:
|
Type : string
|
| learning_group_name |
learning_group_name:
|
Type : string
|
| overall_completion_percentage |
overall_completion_percentage:
|
Type : number | null
|
| participant_email |
participant_email:
|
Type : string | null
|
| participant_id |
participant_id:
|
Type : number
|
| participant_name |
participant_name:
|
Type : string
|
| post_bat_ipq |
post_bat_ipq:
|
Type : number | null
|
| pre_bat_ipq |
pre_bat_ipq:
|
Type : number | null
|
export interface ParticipantProgressSummaryRowDto {
participant_id: number;
participant_name: string;
participant_email: string | null;
course_title: string;
learning_group_name: string;
enrollment_status_label: string;
overall_completion_percentage: number | null;
pre_bat_ipq: number | null;
e_learning_status_label: string;
e_learning_progress_percentage: number | null;
post_bat_ipq: number | null;
course_completed_at: string | null;
}
export interface ParticipantProgressSummaryResponseDto {
rows: ParticipantProgressSummaryRowDto[];
}