ggez-banking-sdk
Version:
A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.
16 lines (15 loc) • 377 B
TypeScript
type AccountStatementTransaction = {
id: number;
server_date: string;
type: number;
description: string;
currency: string;
transaction_currency: string;
fx_rate: number;
amount: number;
transaction_amount: number;
is_credit: number;
parent_transaction_id: number;
mc_rate: number;
};
export type { AccountStatementTransaction };