UNPKG

connect-sdk-nodejs

Version:

SDK to communicate with the Worldline Global Collect platform using the Worldline Connect Server API

5 lines (4 loc) 380 B
import { SdkContext, SdkResponse } from "../../model"; import { ErrorResponse, PaymentProductResponse } from "../model/domain"; import { GetProductParams } from "../model/products"; export declare function get(sdkContext: SdkContext): (merchantId: string, paymentProductId: number, paymentContext: GetProductParams) => Promise<SdkResponse<PaymentProductResponse, ErrorResponse>>;