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; // telephoneNumber: string | null; } export type { RequestObject };