bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
15 lines (14 loc) • 472 B
TypeScript
import { EcpRequest, EcpResponse } from './Ecp';
import { BillingContactInfoRequest, BillingContactInfoResponse } from './BillingContactInfo';
/**
* Contains account details for vaulted shoppers with multiple ACH accounts
*/
export interface EcpDetailsRequest {
billingContactInfo: BillingContactInfoRequest;
ecp: EcpRequest;
status: string;
}
export interface EcpDetailsResponse {
billingContactInfo: BillingContactInfoResponse;
ecp: EcpResponse;
}