UNPKG

baasic-sdk-nodejs

Version:

NodeJS SDK provides core functionality for building web and mobile applications on [Baasic](http://www.baasic.com/).

11 lines (10 loc) 685 B
import { IBaasicQueryModel, IGetRequestOptions, IHttpResponse, IOptions } from '../../../../../infrastructure/common/contracts'; import { ICommerceLookupsPaymentTransactionStatusBatchClient } from '../../'; export interface ICommerceLookupsPaymentTransactionStatusClient { find(options?: IOptions): PromiseLike<IHttpResponse<IBaasicQueryModel<any>>>; get(id: string, options?: IGetRequestOptions): PromiseLike<IHttpResponse<any>>; update(data: any): PromiseLike<IHttpResponse<void>>; create(data: any): PromiseLike<IHttpResponse<any>>; remove(data: any): PromiseLike<IHttpResponse<void>>; batch: ICommerceLookupsPaymentTransactionStatusBatchClient; }