UNPKG

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.

26 lines (25 loc) 697 B
import { Amount } from "./amount"; import { SenderRoutingCodes } from "./senderRoutingCodes"; type PayInData = { id: string; transactionId: string; status: string; senderBic: string; senderIban: string; senderName: string; senderAddress: string; senderInformation: string; amount: Amount; transactionDateTime: string; transactionReference: string; internalAccountId: string; beneficiaryAccountHolderName: string; type: string; paymentType: string; senderAccountNumber: string; primaryKey: string; senderRoutingCodes: SenderRoutingCodes[]; failureReason: string; accountHolderId: string; }; export type { PayInData };