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.
28 lines (27 loc) • 746 B
TypeScript
import { IGeoCoordinates } from "./interface";
export interface DoTransactionInterface {
type: number | string;
amount: string;
currency: string;
note: string;
accountId: number;
validate: string;
bankId?: number | string;
wireTransferType?: number;
geoCoordinates?: IGeoCoordinates | null;
}
export interface GetTransactionInterface {
status?: number;
page_size?: number;
from_date?: string;
to_date?: string;
start_index?: number;
transaction_type?: number | null;
account_id?: number;
transaction_classification?: number;
geoCoordinates?: IGeoCoordinates | null;
}
export interface GetAccountLimit {
account_id: number;
geoCoordinates?: IGeoCoordinates | null;
}