24 lines
563 B
TypeScript
24 lines
563 B
TypeScript
interface RequestObject {
|
|
bloodGroupId: string | null;
|
|
relationshipId: string | null;
|
|
genderId: string | null;
|
|
posTypeId: string;
|
|
posLevelId: string;
|
|
religionId: string | null;
|
|
citizenId: string;
|
|
telephoneNumber: string | null;
|
|
// nationality: string | null;
|
|
ethnicity: string | null;
|
|
birthDate: Date | null;
|
|
dateRetire: Date | null;
|
|
isProbation: boolean;
|
|
keycloak: string;
|
|
phone: string | null;
|
|
email: string | null;
|
|
position: string;
|
|
lastName: string;
|
|
firstName: string;
|
|
prefix: string;
|
|
}
|
|
|
|
export type { RequestObject };
|