verify payment

This commit is contained in:
2025-12-03 12:56:10 +03:30
parent 8a2390ea8e
commit 5af26445fa
4 changed files with 170 additions and 3 deletions
+16
View File
@@ -30,3 +30,19 @@ export interface IPaymentResponse {
fee_type: string;
fee: number;
}
export interface IPaymentVerifyRequest {
merchantId: string;
amount: number;
authority: string;
}
export interface IPaymentVerifyResponse {
code: number;
message: string;
refId: number;
cardPan: string;
cardHash: string;
fee_type: string;
fee: number;
}