bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
10 lines (9 loc) • 522 B
TypeScript
import { HttpClient } from '../../../http/HttpClient';
import { AltTransactionPayPalRequest, AltTransactionPayPalResponse } from './models/AltTransactionPayPal';
export declare class PayPalTransactionGateway {
private http;
constructor(http: HttpClient);
create(altTransaction: AltTransactionPayPalRequest): Promise<AltTransactionPayPalResponse>;
update(altTransaction: AltTransactionPayPalRequest): Promise<AltTransactionPayPalResponse>;
get(orderId: string): Promise<AltTransactionPayPalResponse>;
}