UNPKG

bluesnap

Version:
9 lines (8 loc) 443 B
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; }