fix : sep gateway

This commit is contained in:
2026-01-04 16:00:28 +03:30
parent e5068ad389
commit cf3082e8fb
@@ -23,7 +23,7 @@ export class VerifyOnlinePaymentDTO {
@Expose()
@IsString()
@ApiProperty({ type: "string", description: "Retrieval Reference Number", example: "123456789012" })
RRN: string;
Rrn: string;
@Expose()
@IsNotEmpty()
@@ -65,4 +65,14 @@ export class VerifyOnlinePaymentDTO {
@IsString()
@ApiProperty({ type: "string", description: "Hashed card number", example: "hashed_value" })
HashedCardNumber: string;
@Expose()
@IsString()
@ApiProperty({ type: "string", description: "Affective amount", example: "3000" })
AffectiveAmount: string;
@Expose()
@IsString()
@ApiProperty({ type: "string", description: "Token", example: "24ed56e6fcb1464780e40a71357935e0" })
Token: string;
}