UNPKG

kotanipay-sdk

Version:

Official Kotani Pay SDK for Node.js and Browser

19 lines 477 B
export interface CreateWalletResponse { sucess: boolean; message: string; data: { name: string; type: 'fiat' | 'crypto'; currency: string; integrator: string; status: 'active' | 'inactive' | 'suspended' | 'deleted'; id: string; balance: number; depositbalance: number; }; } export interface CreateWalletRequest { name: string; currency: string; } //# sourceMappingURL=wallet.types.d.ts.map