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.
12 lines (11 loc) • 433 B
TypeScript
import type { BankingCircleData, BeneficiaryAddress, CurrencyCloudData, OpenPaydData, PeoplesData, SNBData } from "..";
type BankExtendedData = {
beneficiary_user_address: BeneficiaryAddress;
beneficiary_bank_address: BeneficiaryAddress;
openpayd: OpenPaydData;
currency_cloud: CurrencyCloudData;
snb: SNBData;
peoples: PeoplesData;
banking_circle: BankingCircleData;
};
export type { BankExtendedData };