bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
17 lines (16 loc) • 478 B
TypeScript
import { EcpAccountType } from '../../../../vaultedShopper/models/Ecp';
/**
* Contains the information required to process an ECP/ACH transaction
*/
export interface EcpTransactionRequest {
accountNumber: string;
routingNumber: string;
accountType: EcpAccountType;
}
export interface EcpTransactionResponse {
accountNumber: string;
routingNumber: string;
accountType: EcpAccountType;
publicAccountNumber: string;
publicRoutingNumber: string;
}