mirror of
https://github.com/HamzaSha1/zod-backend.git
synced 2025-11-26 16:44:54 +00:00
30 lines
713 B
TypeScript
30 lines
713 B
TypeScript
export const getKycCallbackMock = (nationalId: string) => {
|
|
return {
|
|
InstId: '1100',
|
|
transId: '3136fd60-3f89-4d24-a92f-b9c63a53807f',
|
|
date: '20250807',
|
|
time: '150000',
|
|
status: 'SUCCESS',
|
|
firstName: 'John',
|
|
lastName: 'Doe',
|
|
dob: '19990107',
|
|
nationality: '682',
|
|
gender: 'M',
|
|
nationalIdExpiry: '20310917',
|
|
nationalId,
|
|
mobile: '+962798765432',
|
|
salaryMin: '500',
|
|
salaryMax: '1000',
|
|
incomeSource: 'Salary',
|
|
professionTitle: 'Software Engineer',
|
|
professionType: 'Full-Time',
|
|
isPep: 'N',
|
|
country: '682',
|
|
region: 'Mecca',
|
|
city: 'At-Taif',
|
|
neighborhood: 'Al-Hamra',
|
|
street: 'Al-Masjid Al-Haram',
|
|
building: '123',
|
|
};
|
|
};
|