UNPKG

bluesnap

Version:
17 lines (16 loc) 478 B
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; }