/** * 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: iot */ import * as iot from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class DataNodeTypeActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isDataNodeTypeEntityEqual(a: iot.DataNodeTypeEntity, b: iot.DataNodeTypeEntity): boolean; static getDataNodeTypeEntityPrimaryKey(a: iot.DataNodeTypeEntity): string; query(complexSqlAlike: string): DataNodeTypeActions; static fn(options: RemoteRequestOption): DataNodeTypeActions; static fnExec(fn: ExecApi): DataNodeTypeActions; uniqueId(id: string): DataNodeTypeActions; deep(deep?: boolean): DataNodeTypeActions; withPreloads(withPreloads: string): DataNodeTypeActions; sort(sortFields: string | string[]): DataNodeTypeActions; startIndex(offset: number): DataNodeTypeActions; itemsPerPage(limit: number): DataNodeTypeActions; get paramsAsString(): string; getDataNodeTypes(): Promise>; getDataNodeTypeByUniqueId(uniqueId: string): Promise>; postDataNodeType(entity: iot.DataNodeTypeEntity): Promise>; patchDataNodeType(entity: iot.DataNodeTypeEntity): Promise>; patchDataNodeTypes(entity: core.BulkRecordRequest): Promise>; deleteDataNodeType(entity: core.DeleteRequest): Promise; }