bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
9 lines (8 loc) • 443 B
TypeScript
import { PayPalTransactionRequest, PayPalTransactionResponse } from './PayPalTransaction';
import { AltTransactionRequest, AltTransactionResponse } from '../../models/AltTransaction';
export interface AltTransactionPayPalRequest extends AltTransactionRequest {
paypalTransaction: PayPalTransactionRequest;
}
export interface AltTransactionPayPalResponse extends AltTransactionResponse {
paypalTransaction: PayPalTransactionResponse;
}