import BaseCrud from "./BaseCrud"; import { PaymentsStatic } from "../interfaces/PaymentsStatic"; import { BaseStatic } from "../interfaces/BaseStatic"; /** * @deprecated */ export default class Payments extends BaseCrud { constructor(apiToken: string, billId: number); /** * Not implemented by Bexio yet * * @param {BaseStatic.BaseOptions} options * @param {Array>} searchOptions * @returns {Promise>} * @memberof Payments */ search(options: BaseStatic.BaseOptions, searchOptions: Array>): Promise>; /** * Not implemented by Bexio yet * * @param {number} id * @param {{}} ressource * @returns {Promise} * @memberof Payments */ overwrite(id: number, ressource: {}): Promise; /** * Not implemented by Bexio yet * * @param {number} id * @param {Partial<{}>} ressource * @returns {Promise} * @memberof Payments */ edit(id: number, ressource: Partial<{}>): Promise; }