UNPKG

payme-integration

Version:

NestJS integration module for Payme payment system

14 lines (11 loc) 417 B
import { TransactionCancellationReason } from '../../types/enums'; import { BaseResponseDto } from './base-response.dto'; export class CheckTransactionResponseDto extends BaseResponseDto<ICheckTransactionResponse> {} interface ICheckTransactionResponse { create_time: number; perform_time: number; cancel_time: number; transaction: string; state: number; reason: TransactionCancellationReason | null; }