27 lines
584 B
TypeScript
27 lines
584 B
TypeScript
interface RequestItemsObject {
|
|
profileId: string
|
|
educationLevel: string;
|
|
institute: string;
|
|
startYear: number;
|
|
endYear: number;
|
|
finishDate: Date;
|
|
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 };
|
|
|