/** * 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: resume */ import * as resume from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class ResumeProjectTypeActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isResumeProjectTypeEntityEqual(a: resume.ResumeProjectTypeEntity, b: resume.ResumeProjectTypeEntity): boolean; static getResumeProjectTypeEntityPrimaryKey(a: resume.ResumeProjectTypeEntity): string; query(complexSqlAlike: string): ResumeProjectTypeActions; static fn(options: RemoteRequestOption): ResumeProjectTypeActions; static fnExec(fn: ExecApi): ResumeProjectTypeActions; uniqueId(id: string): ResumeProjectTypeActions; deep(deep?: boolean): ResumeProjectTypeActions; withPreloads(withPreloads: string): ResumeProjectTypeActions; sort(sortFields: string | string[]): ResumeProjectTypeActions; startIndex(offset: number): ResumeProjectTypeActions; itemsPerPage(limit: number): ResumeProjectTypeActions; get paramsAsString(): string; getResumeProjectTypes(): Promise>; getResumeProjectTypeByUniqueId(uniqueId: string): Promise>; postResumeProjectType(entity: resume.ResumeProjectTypeEntity): Promise>; patchResumeProjectType(entity: resume.ResumeProjectTypeEntity): Promise>; patchResumeProjectTypes(entity: core.BulkRecordRequest): Promise>; deleteResumeProjectType(entity: core.DeleteRequest): Promise; }