/** * 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: academy */ import * as academy from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class AcSectionActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isAcSectionEntityEqual(a: academy.AcSectionEntity, b: academy.AcSectionEntity): boolean; static getAcSectionEntityPrimaryKey(a: academy.AcSectionEntity): string; query(complexSqlAlike: string): AcSectionActions; static fn(options: RemoteRequestOption): AcSectionActions; static fnExec(fn: ExecApi): AcSectionActions; uniqueId(id: string): AcSectionActions; deep(deep?: boolean): AcSectionActions; withPreloads(withPreloads: string): AcSectionActions; sort(sortFields: string | string[]): AcSectionActions; startIndex(offset: number): AcSectionActions; itemsPerPage(limit: number): AcSectionActions; get paramsAsString(): string; getAcSections(): Promise>; getAcSectionByUniqueId(uniqueId: string): Promise>; postAcSection(entity: academy.AcSectionEntity): Promise>; patchAcSection(entity: academy.AcSectionEntity): Promise>; patchAcSections(entity: core.BulkRecordRequest): Promise>; deleteAcSection(entity: core.DeleteRequest): Promise; }