27 lines
555 B
TypeScript
27 lines
555 B
TypeScript
//ข้อมูล
|
|
interface ResponseObject {
|
|
id: string;
|
|
educationLevel: string;
|
|
educationLevelId: string;
|
|
positionPath: string;
|
|
isEducation: boolean;
|
|
institute: string;
|
|
degree: string;
|
|
field: string;
|
|
gpa: string;
|
|
country: string;
|
|
duration: string;
|
|
durationYear: number;
|
|
other: string;
|
|
fundName: string;
|
|
isDate: string | null;
|
|
finishDate: Date | null | string;
|
|
startDate: number;
|
|
endDate: number;
|
|
startDate2: Date;
|
|
endDate2: Date;
|
|
createdFullName: string;
|
|
createdAt: Date;
|
|
}
|
|
|
|
export type { ResponseObject };
|