2024-03-22 19:20:35 +07:00
|
|
|
interface RequestObject {
|
2024-11-11 16:12:58 +07:00
|
|
|
birthDate: Date | null | string;
|
2024-03-26 17:52:25 +07:00
|
|
|
bloodGroup: string | null;
|
|
|
|
|
citizenId: string;
|
2024-06-10 18:00:12 +07:00
|
|
|
// email: string | null;
|
2024-03-26 17:52:25 +07:00
|
|
|
ethnicity: string | null;
|
|
|
|
|
firstName: string;
|
|
|
|
|
gender: string | null;
|
|
|
|
|
lastName: string;
|
|
|
|
|
nationality: string | null;
|
2024-06-10 18:00:12 +07:00
|
|
|
// posLevelId: string;
|
|
|
|
|
// posTypeId: string;
|
2024-03-22 19:20:35 +07:00
|
|
|
prefix: string;
|
2024-11-11 14:52:45 +07:00
|
|
|
rank?: string | null;
|
|
|
|
|
relationship?: string | null;
|
|
|
|
|
religion?: string | null;
|
|
|
|
|
phone?: string | null;
|
2024-06-10 18:00:12 +07:00
|
|
|
// telephoneNumber: string | null;
|
2024-03-22 19:20:35 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type { RequestObject };
|