connect-sdk-nodejs
Version:
SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API
5 lines (4 loc) • 307 B
TypeScript
import { PaymentContext, SdkCallback } from "../model";
import { RefundRequest } from "../model/domain/refund";
declare const createRefundCapture: (merchantId: string, captureId: string, postData: RefundRequest, paymentContext: PaymentContext | null, cb: SdkCallback) => void;
export = createRefundCapture;