/** * 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 QuestionDifficulityLevelActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isQuestionDifficulityLevelEntityEqual(a: academy.QuestionDifficulityLevelEntity, b: academy.QuestionDifficulityLevelEntity): boolean; static getQuestionDifficulityLevelEntityPrimaryKey(a: academy.QuestionDifficulityLevelEntity): string; query(complexSqlAlike: string): QuestionDifficulityLevelActions; static fn(options: RemoteRequestOption): QuestionDifficulityLevelActions; static fnExec(fn: ExecApi): QuestionDifficulityLevelActions; uniqueId(id: string): QuestionDifficulityLevelActions; deep(deep?: boolean): QuestionDifficulityLevelActions; withPreloads(withPreloads: string): QuestionDifficulityLevelActions; sort(sortFields: string | string[]): QuestionDifficulityLevelActions; startIndex(offset: number): QuestionDifficulityLevelActions; itemsPerPage(limit: number): QuestionDifficulityLevelActions; get paramsAsString(): string; getQuestionDifficulityLevels(): Promise>; getQuestionDifficulityLevelByUniqueId(uniqueId: string): Promise>; postQuestionDifficulityLevel(entity: academy.QuestionDifficulityLevelEntity): Promise>; patchQuestionDifficulityLevel(entity: academy.QuestionDifficulityLevelEntity): Promise>; patchQuestionDifficulityLevels(entity: core.BulkRecordRequest): Promise>; deleteQuestionDifficulityLevel(entity: core.DeleteRequest): Promise; }