Type Alias GroupGradeConfigDto
GroupGradeConfigDto: {
items: {
appliedScoreRate: number;
contentId: string;
id: string;
lastScoringAt: string | null;
maxScaledScore: number;
maxScore: number;
name: string;
scoreRate: number | null;
type: "GROUP_ASSIGNMENT" | "GROUP_PEER_ASSESSMENT";
}[];
lastScoringFinishedAt: string | null;
scoreRateType: "KEEP_SCORE_WEIGHT" | "USER_INPUT";
totalMaxScaledScore: number;
totalScoreRate: number;
validation: {
errors: string[];
invalidScoreRate: boolean;
};
}