import { client } from "../models/client"; import { wallet } from "../models/wallet"; import { CurrencyISO } from "../types"; import { transaction } from "../models/transaction"; import { base } from "../base"; import { payIn } from "../models/payIn"; import NoArgMethodOverload = base.NoArgMethodOverload; import MethodOverload = base.MethodOverload; import TwoArgsMethodOverload = base.TwoArgsMethodOverload; export class Clients { /** * Get the client */ get: NoArgMethodOverload; /** * Update the client * @param client * @param options */ update: MethodOverload; /** * Upload client logo from base64 image string * @param base64Logo * @param options */ uploadLogo: MethodOverload; /** * Upload client logo from file path * @param filePath * @param options */ uploadLogoFromFile: MethodOverload; /** * Get all client wallets * @param options */ getClientWallets: NoArgMethodOverload; /** * Get a client wallet * @param fundsType * @param currency * @param options */ getClientWallet: TwoArgsMethodOverload; /** * Get client wallets by the type of funds * @param fundsType * @param options */ getClientWalletsByFundsType: MethodOverload; /** * Get a client wallet's transactions * @param fundsType * @param currency * @param options */ getClientWalletTransactions: TwoArgsMethodOverload; /** * Create a Direct Bank Wire PayIn, instead of a Settlement Transfer, to the Repudiation Wallet in order to settle the negative balance due to a LOST dispute. * The object expires 1 month after creation if no funds are received. */ createBankWireDirectPayIn: MethodOverload }