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