UNPKG

payme-integration

Version:

NestJS integration module for Payme payment system

10 lines (7 loc) 258 B
import { BaseResponseDto } from './base-response.dto'; export class CreateTransactionResponseDto extends BaseResponseDto<ICreateTransactionResponse> {} interface ICreateTransactionResponse { transaction: string; state: number; create_time: number; }