Type Alias ChallengeCreateBodyDto
ChallengeCreateBodyDto: {
body?: string;
emoji: string;
includeAuthor?: boolean;
tasks: {
deadline: string;
guide?: string | null;
id?: string;
index: number;
startedAt: string;
targetContentId?: string | null;
title: string;
type?:
| "CHECK_TASK"
| "CREATE_NOTE_POST"
| "CREATE_QUESTION_POST"
| "CREATE_POST_CHAT"
| "COMPLETE_CONTENT";
}[];
title: string;
}