connect-sdk-nodejs
Version:
SDK to communicate with the Ingenico ePayments platform using the Ingenico Connect Server API
34 lines (33 loc) • 1.03 kB
TypeScript
import { AmountOfMoney, BankAccountBban, BankAccountIban } from "../../definitions";
export interface BankData {
newBankName?: string | null;
reformattedAccountNumber?: string | null;
reformattedBankCode?: string | null;
reformattedBranchCode?: string | null;
}
export interface BankDetails {
bankAccountBban?: BankAccountBban | null;
bankAccountIban?: BankAccountIban | null;
}
export interface IINDetail {
isAllowedInContext?: boolean | null;
paymentProductId?: number | null;
}
export interface PaymentContext {
amountOfMoney?: AmountOfMoney | null;
countryCode?: string | null;
isInstallments?: boolean | null;
isRecurring?: boolean | null;
}
export interface Swift {
bic?: string | null;
category?: string | null;
chipsUID?: string | null;
extraInfo?: string | null;
poBoxCountry?: string | null;
poBoxLocation?: string | null;
poBoxNumber?: string | null;
poBoxZip?: string | null;
routingBic?: string | null;
services?: string | null;
}