payme-integration
Version:
NestJS integration module for Payme payment system
14 lines (13 loc) • 447 B
TypeScript
import { TransactionCancellationReason } from '../../types/enums';
import { BaseResponseDto } from './base-response.dto';
export declare class CheckTransactionResponseDto extends BaseResponseDto<ICheckTransactionResponse> {
}
interface ICheckTransactionResponse {
create_time: number;
perform_time: number;
cancel_time: number;
transaction: string;
state: number;
reason: TransactionCancellationReason | null;
}
export {};