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) • 652 B
TypeScript
import { IBaasicQueryModel, IGetRequestOptions, IHttpResponse, IOptions } from '../../../../../infrastructure/common/contracts';
import { ICommerceLookupsPaymentMethodBatchClient } from '../../';
export interface ICommerceLookupsPaymentMethodClient {
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: ICommerceLookupsPaymentMethodBatchClient;
}