bluesnap
Version:
Node SDK for the BlueSnap Payment Gateway
19 lines (18 loc) • 477 B
TypeScript
/**
* Contains bank account details for the SEPA Direct Debit payment method for vaulted shoppers
*/
export interface SepaDirectDebitRequest {
iban: string;
bic?: string;
ibanFirstFour?: string;
ibanLastFour?: string;
}
export interface SepaDirectDebitResponse {
bic: string;
ibanFirstFour: string;
ibanLastFour: string;
mandateId: string;
mandateDate: string;
preNotificationText: string;
preNotificationTranslationRef: string;
}