/** * Fields for entity. Use this when creating forms in React/Angular, * instead of giving string to each one, use it from here, so in case of * updating any fields you don't loose it. */ export const QuestionEntityFields = { uniqueId: "uniqueId", parentId: "parentId", roleId: "roleId", workspaceId: "workspaceId", createdAt: "createdAt", deletedAt: "deletedAt", updatedAt: "updatedAt", bank: "bank", body: "body", bodyExcerpt: "bodyExcerpt", choices: "choices", durationInSeconds: "durationInSeconds", isCorrect: "isCorrect", isPreview: "isPreview", provinces: "provinces", questionDifficulityLevel: "questionDifficulityLevel", questionLevel: "questionLevel", questionSemester: "questionSemester", schoolType: "schoolType", studyYear: "studyYear", title: "title", titleExcerpt: "titleExcerpt", wordCount: "wordCount", };