2021-04-15 01:06:42 +00:00
|
|
|
import { IVoucher } from './voucher';
|
2021-04-15 00:59:56 +00:00
|
|
|
|
|
|
|
export interface IFinplusTransaction {
|
|
|
|
finplusTransactionId: string;
|
|
|
|
data: {
|
|
|
|
finplusPaymentAccountId: string;
|
|
|
|
originTransactionId: string;
|
|
|
|
originAccountId: string;
|
|
|
|
additionalIds: string[];
|
|
|
|
date: number;
|
|
|
|
amount: number;
|
|
|
|
description: string;
|
|
|
|
name: string;
|
|
|
|
voucherData?: IVoucher;
|
|
|
|
justForLooks?: {
|
|
|
|
paymentAcountName: string;
|
|
|
|
voucherSizeInMB: number;
|
|
|
|
dateIso?: string;
|
|
|
|
};
|
|
|
|
};
|
2021-04-15 01:06:42 +00:00
|
|
|
}
|