bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
14 lines (13 loc) • 442 B
TypeScript
import { EcpRequest, EcpResponse } from './Ecp';
import { BillingContactInfoRequest, BillingContactInfoResponse } from './BillingContactInfo';
/**
* Contains ACH/ECP account details & billing info for vaulted shoppers
*/
export interface EcpInfoRequest {
billingContactInfo: BillingContactInfoRequest;
ecp: EcpRequest;
}
export interface EcpInfoResponse {
billingContactInfo: BillingContactInfoResponse;
ecp: EcpResponse;
}