21 lines
484 B
TypeScript
21 lines
484 B
TypeScript
interface RequestObject {
|
|
birthDate: Date | null;
|
|
bloodGroup: string | null;
|
|
citizenId: string;
|
|
email: string | null;
|
|
ethnicity: string | null;
|
|
firstName: string;
|
|
gender: string | null;
|
|
lastName: string;
|
|
nationality: string | null;
|
|
phone: string | null;
|
|
posLevelId: string;
|
|
posTypeId: string;
|
|
prefix: string;
|
|
rank: string | null;
|
|
relationship: string | null;
|
|
religion: string | null;
|
|
telephoneNumber: string | null;
|
|
}
|
|
|
|
export type { RequestObject };
|