UNPKG

payme-integration

Version:

NestJS integration module for Payme payment system

15 lines (12 loc) 302 B
import { TransactionMethods } from '../../types/transaction-methods'; import { IAccount } from '../../payme.module'; export class CreateTransactionRequestDto { method: TransactionMethods; params: { id: string; time: number; amount: number; account: IAccount; }; id: number; }