/** * 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: loyalty */ import * as loyalty from "./index"; import { RemoteRequestOption, IDeleteResponse, IResponse, core, ExecApi, IResponseList } from "../../core/http-tools"; export declare class BusinessCustomerActions { private apiFn; private _itemsPerPage?; private _startIndex?; private _sort?; private _query?; private _withPreloads?; private _uniqueId?; private _deep?; constructor(apiFn: ExecApi); static isBusinessCustomerEntityEqual(a: loyalty.BusinessCustomerEntity, b: loyalty.BusinessCustomerEntity): boolean; static getBusinessCustomerEntityPrimaryKey(a: loyalty.BusinessCustomerEntity): string; query(complexSqlAlike: string): BusinessCustomerActions; static fn(options: RemoteRequestOption): BusinessCustomerActions; static fnExec(fn: ExecApi): BusinessCustomerActions; uniqueId(id: string): BusinessCustomerActions; deep(deep?: boolean): BusinessCustomerActions; withPreloads(withPreloads: string): BusinessCustomerActions; sort(sortFields: string | string[]): BusinessCustomerActions; startIndex(offset: number): BusinessCustomerActions; itemsPerPage(limit: number): BusinessCustomerActions; get paramsAsString(): string; getBusinessCustomers(): Promise>; getBusinessCustomerByUniqueId(uniqueId: string): Promise>; postBusinessCustomer(entity: loyalty.BusinessCustomerEntity): Promise>; patchBusinessCustomer(entity: loyalty.BusinessCustomerEntity): Promise>; patchBusinessCustomers(entity: core.BulkRecordRequest): Promise>; deleteBusinessCustomer(entity: core.DeleteRequest): Promise; }