From cf3082e8fb28732ce447ca26be21e8356d02086f Mon Sep 17 00:00:00 2001 From: morteza-mortezai Date: Sun, 4 Jan 2026 16:00:28 +0330 Subject: [PATCH] fix : sep gateway --- src/modules/payment/DTO/verifyOnlinePayment.dto.ts | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/modules/payment/DTO/verifyOnlinePayment.dto.ts b/src/modules/payment/DTO/verifyOnlinePayment.dto.ts index 62f8211..41b7617 100644 --- a/src/modules/payment/DTO/verifyOnlinePayment.dto.ts +++ b/src/modules/payment/DTO/verifyOnlinePayment.dto.ts @@ -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; }