15 lines
281 B
TypeScript
Executable File
15 lines
281 B
TypeScript
Executable File
export interface IBankTransaction {
|
|
amount?: number;
|
|
bank_integration_id?: number;
|
|
base_type?: string;
|
|
currency_id?: number;
|
|
date?: string;
|
|
description?: string;
|
|
id?: string;
|
|
payment_id?: string;
|
|
}
|
|
|
|
export interface IBankTransactions {
|
|
transactions: IBankTransaction[];
|
|
}
|