import BaseCrud from "./BaseCrud"; import { BankAccountsStatic } from "../interfaces/BankAccountsStatic"; import { BaseStatic } from "../interfaces/BaseStatic"; export default class BankAccounts extends BaseCrud { constructor(apiToken: string); /** * NOT IMPLEMENTED BY BEXIO YET * * @param {Array>} searchOptions * @param {BaseStatic.BaseOptions} [options] * @returns {Promise>} * @memberof BankAccounts */ search(searchOptions: Array>, options?: BaseStatic.BaseOptions): Promise>; /** * NOT IMPLEMENTED BY BEXIO YET * * @param {number} id * @param {{}} ressource * @returns {Promise} * @memberof BankAccounts */ overwrite(id: number, ressource: {}): Promise; /** * NOT IMPLEMENTED BY BEXIO YET * * @param {number} id * @param {Partial<{}>} ressource * @returns {Promise} * @memberof BankAccounts */ edit(id: number, ressource: Partial<{}>): Promise; /** * NOT IMPLEMENTED BY BEXIO YET * * @param {{}} ressource * @returns {Promise} * @memberof BankAccounts */ create(ressource: {}): Promise; /** * NOT IMPLEMENTED BY BEXIO YET * * @param {number} id * @returns {Promise} * @memberof BankAccounts */ delete(id: number): Promise; }