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