connect-sdk-nodejs
Version:
SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API
5 lines (4 loc) • 370 B
TypeScript
import { SdkContext, SdkResponse } from "../../model";
import { ErrorResponse, PaymentProductGroups } from "../model/domain";
import { FindProductgroupsParams } from "../model/productgroups";
export declare function find(sdkContext: SdkContext): (merchantId: string, paymentContext: FindProductgroupsParams) => Promise<SdkResponse<PaymentProductGroups, ErrorResponse>>;