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