/** * 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: workspaces */ import * as workspaces from "../workspaces"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class GsmProviderActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isGsmProviderEntityEqual(a: workspaces.GsmProviderEntity, b: workspaces.GsmProviderEntity): boolean; static getGsmProviderEntityPrimaryKey(a: workspaces.GsmProviderEntity): string; query(complexSqlAlike: string): GsmProviderActions; static fn(options: RemoteRequestOption): GsmProviderActions; static fnExec(fn: ExecApi): GsmProviderActions; uniqueId(id: string): GsmProviderActions; deep(deep?: boolean): GsmProviderActions; withPreloads(withPreloads: string): GsmProviderActions; sort(sortFields: string | string[]): GsmProviderActions; startIndex(offset: number): GsmProviderActions; itemsPerPage(limit: number): GsmProviderActions; get paramsAsString(): string; getGsmProviders(): Promise>; getGsmProviderByUniqueId(uniqueId: string): Promise>; postGsmProvider(entity: workspaces.GsmProviderEntity): Promise>; patchGsmProvider(entity: workspaces.GsmProviderEntity): Promise>; patchGsmProviders(entity: core.BulkRecordRequest): Promise>; deleteGsmProvider(entity: core.DeleteRequest): Promise; }