feat: working on creating parent card

This commit is contained in:
Abdalhamid Alhamad
2025-08-14 14:40:08 +03:00
parent c06086f899
commit e06642225a
29 changed files with 328 additions and 114 deletions

View File

@ -96,4 +96,34 @@ export class KycWebhookRequest {
@IsString()
@ApiProperty({ example: 'N' })
isPep!: string;
@Expose()
@IsString()
@ApiProperty({ example: '682' })
country!: string;
@Expose()
@IsString()
@ApiProperty({ example: 'Mecca' })
region!: string;
@Expose()
@IsString()
@ApiProperty({ example: 'At-Taif' })
city!: string;
@Expose()
@IsString()
@ApiProperty({ example: 'Al-Hamra' })
neighborhood!: string;
@Expose()
@IsString()
@ApiProperty({ example: 'Al-Masjid Al-Haram' })
street!: string;
@Expose()
@IsString()
@ApiProperty({ example: '123' })
building!: string;
}