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.
19 lines (18 loc) • 646 B
TypeScript
import { AccountStatementTransaction } from "..";
type AccountStatementDetails = {
total_transaction_count: number;
previous_month_balance: number;
previous_payment_received: number;
previous_payment_receive_date: string;
payment_receive_date: string;
total_credit_transaction_count: number;
total_credit_transaction_volume: number;
total_debit_transaction_count: number;
total_debit_transaction_volume: number;
total_fee_count: number;
total_fee_volume: number;
bin_fx_rate: number;
transactions: AccountStatementTransaction[];
product: string;
};
export type { AccountStatementDetails };