Type Alias PeerAssessmentDraftResponseDto

PeerAssessmentDraftResponseDto: {
    draft: {
        isManualSubmitted: boolean;
        lastSeenQuestionId: string | null;
        lastSeenTargetId: string | null;
        requestedAt: string;
        snapshotId: string;
        spaceGroupId: string;
        targets: {
            answers: {
                questionId: string;
                score: number;
            }[];
            comment: string | null;
            targetId: string;
        }[];
    } | null;
}