/** * This is an auto generate file from fireback project. * You can use this in order to communicate in backend, it gives you available actions, * and their types * Module: wallet */ import * as wallet from "./index"; import { RemoteRequestOption, IResponse, ExecApi, IResponseList } from "../../core/http-tools"; export declare class PaymentRequestActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isPaymentRequestEntityEqual(a: wallet.PaymentRequestEntity, b: wallet.PaymentRequestEntity): boolean; static getPaymentRequestEntityPrimaryKey(a: wallet.PaymentRequestEntity): string; query(complexSqlAlike: string): PaymentRequestActions; static fn(options: RemoteRequestOption): PaymentRequestActions; static fnExec(fn: ExecApi): PaymentRequestActions; uniqueId(id: string): PaymentRequestActions; deep(deep?: boolean): PaymentRequestActions; withPreloads(withPreloads: string): PaymentRequestActions; sort(sortFields: string | string[]): PaymentRequestActions; startIndex(offset: number): PaymentRequestActions; itemsPerPage(limit: number): PaymentRequestActions; get paramsAsString(): string; getPaymentRequests(): Promise>; getPaymentRequestByUniqueId(uniqueId: string): Promise>; postPaymentRequestsInitiate(entity: wallet.PaymentRequestEntity): Promise>; postPaymentRequestsResolve(entity: wallet.PaymentRequestResolveDto): Promise>; }