import { BaseTypedef } from '../base.typedef'; import { Category } from '../quizz/category.typedef'; import { AnswerClients } from '../quizz/answer.typedef'; import { Administrator } from '../user/administrator.typedef'; import { AttachmentTypedef } from '..'; export declare class Question extends BaseTypedef { _id: string; name: string; isActive: boolean; isMultipleChoise: boolean; isAnswerOther: boolean; description: string; attachments: AttachmentTypedef[]; metadata: object; category: Category; categoryId: string; createdBy: Administrator; config: object; note: string; type: string; ruleQuestion: string; quizzes: QuizzInfo[]; answers: AnswerClients[]; bingGo: string[]; orgId: string; difficulty: string; explanation: string; } export declare class QuestionDetail extends Question { } export declare class QuizzInfo { _id: string; name: string; } declare const QuestionListReponse_base: any; export declare class QuestionListReponse extends QuestionListReponse_base { } export {}; //# sourceMappingURL=question.typedef.d.ts.map