fix(core): update
This commit is contained in:
21
ts/interfaces/transaction.ts
Normal file
21
ts/interfaces/transaction.ts
Normal file
@@ -0,0 +1,21 @@
|
||||
import { IVoucher } from "./voucher";
|
||||
|
||||
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;
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user