update payment

This commit is contained in:
2025-12-02 11:11:36 +03:30
parent 1165167619
commit 2e9a1dc7dc
12 changed files with 250 additions and 61 deletions
@@ -4,3 +4,17 @@ export enum PaymentStatus {
Failed = 'failed',
}
export interface IPaymentRequest {
amount: number;
callbackUrl: string;
merchantId: string;
description: string;
}
export interface IPaymentResponse {
code: number;
message: string;
authority: string;
fee_type: string;
fee: number;
}