bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
17 lines (16 loc) • 494 B
TypeScript
/**
* Contains ACH/ECP account details for vaulted shoppers
*/
export declare type EcpAccountType = 'CONSUMER_CHECKING' | 'CONSUMER_SAVINGS' | 'CORPORATE_CHECKING' | 'CORPORATE_SAVINGS';
export interface EcpRequest {
accountNumber: string;
routingNumber: string;
accountType: EcpAccountType;
}
export interface EcpResponse {
accountNumber: string;
routingNumber: string;
accountType: EcpAccountType;
publicAccountNumber: string;
publicRoutingNumber: string;
}