Files
dlearn-api/src/application/IPG/interface/IPG.ts
T
2025-01-03 11:29:33 +03:30

13 lines
215 B
TypeScript

export interface NewPaymentData {
amount: number;
description: string;
email: string;
mobile: string;
callbackPath: string;
}
export interface VerifyPaymentData {
authority: string;
amount: number;
}