/** * 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: currency */ import * as currency from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class PriceTagActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isPriceTagEntityEqual(a: currency.PriceTagEntity, b: currency.PriceTagEntity): boolean; static getPriceTagEntityPrimaryKey(a: currency.PriceTagEntity): string; query(complexSqlAlike: string): PriceTagActions; static fn(options: RemoteRequestOption): PriceTagActions; static fnExec(fn: ExecApi): PriceTagActions; uniqueId(id: string): PriceTagActions; deep(deep?: boolean): PriceTagActions; withPreloads(withPreloads: string): PriceTagActions; sort(sortFields: string | string[]): PriceTagActions; startIndex(offset: number): PriceTagActions; itemsPerPage(limit: number): PriceTagActions; get paramsAsString(): string; getPriceTags(): Promise>; getPriceTagByUniqueId(uniqueId: string): Promise>; postPriceTag(entity: currency.PriceTagEntity): Promise>; patchPriceTag(entity: currency.PriceTagEntity): Promise>; patchPriceTags(entity: core.BulkRecordRequest): Promise>; deletePriceTag(entity: core.DeleteRequest): Promise; }