/** * 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: licenses */ import * as licenses from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class LicenseActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isLicenseEntityEqual(a: licenses.LicenseEntity, b: licenses.LicenseEntity): boolean; static getLicenseEntityPrimaryKey(a: licenses.LicenseEntity): string; query(complexSqlAlike: string): LicenseActions; static fn(options: RemoteRequestOption): LicenseActions; static fnExec(fn: ExecApi): LicenseActions; uniqueId(id: string): LicenseActions; deep(deep?: boolean): LicenseActions; withPreloads(withPreloads: string): LicenseActions; sort(sortFields: string | string[]): LicenseActions; startIndex(offset: number): LicenseActions; itemsPerPage(limit: number): LicenseActions; get paramsAsString(): string; getLicenses(): Promise>; getLicenseByUniqueId(uniqueId: string): Promise>; postLicense(entity: licenses.LicenseEntity): Promise>; patchLicense(entity: licenses.LicenseEntity): Promise>; patchLicenses(entity: core.BulkRecordRequest): Promise>; deleteLicense(entity: core.DeleteRequest): Promise; postLicenseFromPlanByUniqueId(uniqueId: string, entity: licenses.LicenseFromPlanIdDto): Promise>; }