Type Alias UpsertPeerAssessmentBodyDto

UpsertPeerAssessmentBodyDto: {
    allowDescriptiveAssessment?: boolean;
    allowSelfAssessment?: boolean;
    questions?: {
        assessmentCriteria: string;
        criteriaSubText: string | null;
        id?: string;
    }[];
    spaceGroupSetId?: string | null;
    submitType?: "GROUP_MEMBER" | "INTER_GROUP";
}