/** * 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: geo */ import * as geo from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class GeoCityActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isGeoCityEntityEqual(a: geo.GeoCityEntity, b: geo.GeoCityEntity): boolean; static getGeoCityEntityPrimaryKey(a: geo.GeoCityEntity): string; query(complexSqlAlike: string): GeoCityActions; static fn(options: RemoteRequestOption): GeoCityActions; static fnExec(fn: ExecApi): GeoCityActions; uniqueId(id: string): GeoCityActions; deep(deep?: boolean): GeoCityActions; withPreloads(withPreloads: string): GeoCityActions; sort(sortFields: string | string[]): GeoCityActions; startIndex(offset: number): GeoCityActions; itemsPerPage(limit: number): GeoCityActions; get paramsAsString(): string; getGeoCitys(): Promise>; getGeoCityByUniqueId(uniqueId: string): Promise>; postGeoCity(entity: geo.GeoCityEntity): Promise>; patchGeoCity(entity: geo.GeoCityEntity): Promise>; patchGeoCitys(entity: core.BulkRecordRequest): Promise>; deleteGeoCity(entity: core.DeleteRequest): Promise; }