bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
8 lines (7 loc) • 345 B
TypeScript
import { HttpClient } from '../http/HttpClient';
import { RefundRequestQueryParams, RefundTransactionResponse } from './models/RefundTransaction';
export declare class RefundGateway {
private http;
constructor(http: HttpClient);
refund(transactionId: string, params?: RefundRequestQueryParams): Promise<RefundTransactionResponse>;
}