/** * 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: workspaces */ import * as workspaces from "../workspaces"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class EmailSenderActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isEmailSenderEntityEqual(a: workspaces.EmailSenderEntity, b: workspaces.EmailSenderEntity): boolean; static getEmailSenderEntityPrimaryKey(a: workspaces.EmailSenderEntity): string; query(complexSqlAlike: string): EmailSenderActions; static fn(options: RemoteRequestOption): EmailSenderActions; static fnExec(fn: ExecApi): EmailSenderActions; uniqueId(id: string): EmailSenderActions; deep(deep?: boolean): EmailSenderActions; withPreloads(withPreloads: string): EmailSenderActions; sort(sortFields: string | string[]): EmailSenderActions; startIndex(offset: number): EmailSenderActions; itemsPerPage(limit: number): EmailSenderActions; get paramsAsString(): string; getEmailSenders(): Promise>; getEmailSenderByUniqueId(uniqueId: string): Promise>; postEmailSender(entity: workspaces.EmailSenderEntity): Promise>; patchEmailSender(entity: workspaces.EmailSenderEntity): Promise>; patchEmailSenders(entity: core.BulkRecordRequest): Promise>; deleteEmailSender(entity: core.DeleteRequest): Promise; }