/** * 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 CourseEnrollmentActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isCourseEnrollmentEntityEqual(a: academy.CourseEnrollmentEntity, b: academy.CourseEnrollmentEntity): boolean; static getCourseEnrollmentEntityPrimaryKey(a: academy.CourseEnrollmentEntity): string; query(complexSqlAlike: string): CourseEnrollmentActions; static fn(options: RemoteRequestOption): CourseEnrollmentActions; static fnExec(fn: ExecApi): CourseEnrollmentActions; uniqueId(id: string): CourseEnrollmentActions; deep(deep?: boolean): CourseEnrollmentActions; withPreloads(withPreloads: string): CourseEnrollmentActions; sort(sortFields: string | string[]): CourseEnrollmentActions; startIndex(offset: number): CourseEnrollmentActions; itemsPerPage(limit: number): CourseEnrollmentActions; get paramsAsString(): string; getCourseEnrollments(): Promise>; getCourseEnrollmentByUniqueId(uniqueId: string): Promise>; postCourseEnrollment(entity: academy.CourseEnrollmentEntity): Promise>; patchCourseEnrollment(entity: academy.CourseEnrollmentEntity): Promise>; patchCourseEnrollments(entity: core.BulkRecordRequest): Promise>; deleteCourseEnrollment(entity: core.DeleteRequest): Promise; }