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.
35 lines (34 loc) • 876 B
TypeScript
import { WireTransferType } from "../../../constant";
type TransactionInfo = {
id: number;
parent_id: number;
account_id: number;
user_id: number;
pos_id: number;
status: number;
type: number;
classification: string;
operation: string;
amount: number;
currency: string;
balance: number;
available_balance: number;
notes: string;
original_source_id: string;
server_date: string;
date_utc: string;
auth_date_utc: string;
post_date_utc: string;
client_date: Date;
auth_client_date: Date;
post_client_date: Date;
source_time_zone: string;
service_provider: number;
wallet_identifier: string;
is_3ds: number;
is_hard_posted: number;
pos_terminal_entry_mode: string;
wire_transfer_type: WireTransferType;
request_id?: number;
};
export type { TransactionInfo };