/** * 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 SchoolTypeActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isSchoolTypeEntityEqual(a: academy.SchoolTypeEntity, b: academy.SchoolTypeEntity): boolean; static getSchoolTypeEntityPrimaryKey(a: academy.SchoolTypeEntity): string; query(complexSqlAlike: string): SchoolTypeActions; static fn(options: RemoteRequestOption): SchoolTypeActions; static fnExec(fn: ExecApi): SchoolTypeActions; uniqueId(id: string): SchoolTypeActions; deep(deep?: boolean): SchoolTypeActions; withPreloads(withPreloads: string): SchoolTypeActions; sort(sortFields: string | string[]): SchoolTypeActions; startIndex(offset: number): SchoolTypeActions; itemsPerPage(limit: number): SchoolTypeActions; get paramsAsString(): string; getSchoolTypes(): Promise>; getSchoolTypeByUniqueId(uniqueId: string): Promise>; postSchoolType(entity: academy.SchoolTypeEntity): Promise>; patchSchoolType(entity: academy.SchoolTypeEntity): Promise>; patchSchoolTypes(entity: core.BulkRecordRequest): Promise>; deleteSchoolType(entity: core.DeleteRequest): Promise; }