UNPKG

payme-integration

Version:

NestJS integration module for Payme payment system

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