22 lines
522 B
TypeScript
22 lines
522 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;
|
|
// posLevelId: string;
|
|
// posTypeId: string;
|
|
prefix: string;
|
|
rank?: string | null;
|
|
relationship?: string | null;
|
|
religion?: string | null;
|
|
phone?: string | null;
|
|
prefixMain: string;
|
|
// telephoneNumber: string | null;
|
|
}
|
|
|
|
export type { RequestObject };
|