hrms-mgt/src/modules/04_registryPerson/interface/request/Profile.ts

22 lines
509 B
TypeScript
Raw Normal View History

interface RequestObject {
birthDate: Date | null | string;
bloodGroup: string | null;
citizenId: string;
// email: string | null;
ethnicity: string | null;
firstName: string;
gender: string | null;
lastName: string;
nationality: string | null;
// posLevelId: string;
// posTypeId: string;
prefix: string;
2024-11-11 14:52:45 +07:00
rank?: string | null;
relationship?: string | null;
religion?: string | null;
phone?: string | null;
// telephoneNumber: string | null;
}
export type { RequestObject };