interface RequestItemsObject { profileId: string; educationLevel: string; institute: string; startYear: number; endYear: number; finishDate: Date | null; startDate: Date; endDate: Date; isEducation: boolean | null; degree: string; field: string; fundName: string; gpa: string; country: string; other: string; duration: string; durationYear: number | null; note: string; educationLevelId: string; positionPath: string; positionPathId: string; isDate: boolean; } export type { RequestItemsObject };