Add comment

This commit is contained in:
Suphonchai Phoonsawat 2024-12-10 10:05:21 +07:00
parent 296f33b190
commit 5ada115c90

View file

@ -26,25 +26,85 @@ interface DPISResponse {
} }
interface DPISResult { interface DPISResult {
/**
*
*/
citizenId: string; citizenId: string;
/**
*
*/
prefix: string; prefix: string;
/**
*
*/
firstName: string; firstName: string;
/**
*
*/
lastName: string; lastName: string;
/**
*
*/
gender: string; gender: string;
/**
*
*/
physicalStatus: string; physicalStatus: string;
/**
*
*/
QualityWorkforce: boolean; QualityWorkforce: boolean;
/**
*
*/
birthDate: DateTime; birthDate: DateTime;
/**
*
*/
dateAppoint: DateTime; dateAppoint: DateTime;
/**
*
*/
dateStart: DateTime; dateStart: DateTime;
/**
*
*/
dateRetire: DateTime; dateRetire: DateTime;
/**
* ?
*/
isLeave: boolean; isLeave: boolean;
/**
* ?
*/
isProbation: boolean; isProbation: boolean;
/**
*
*/
leaveReason: string; leaveReason: string;
/**
*
*/
positionLevel: string; positionLevel: string;
/**
*
*/
positionType: string; positionType: string;
/**
*
*/
educations: ProfileEducationResult[]; educations: ProfileEducationResult[];
/**
*
*/
leaves: ProfileLeaveResult[]; leaves: ProfileLeaveResult[];
/**
*
*/
salaries: ProfileSalaryResult[]; salaries: ProfileSalaryResult[];
/**
*
*/
organization: ProfileOrgResult; organization: ProfileOrgResult;
} }