Type Alias UpsertRubricBodyDto
UpsertRubricBodyDto: {
criteria: {
description: string | null;
id?: string;
levels?: {
description: string | null;
id?: string;
name: string | null;
points: number;
}[];
maxPoints: number;
name: string;
}[];
useLevel: boolean;
visibility: "VISIBLE_ALL" | "HIDE_ALL_TO_PARTICIPANTS";
}