UNPKG

@adyen/api-library

Version:

The Adyen API Library for NodeJS enables you to work with Adyen APIs.

75 lines (74 loc) 1.71 kB
import { Amount } from "./amount"; export declare class CheckoutBankTransferAction { /** * The account number of the bank transfer. */ "accountNumber"?: string; /** * The name of the account holder. */ "beneficiary"?: string; /** * The BIC of the IBAN. */ "bic"?: string; /** * The url to download payment details with. */ "downloadUrl"?: string; /** * The IBAN of the bank transfer. */ "iban"?: string; /** * Specifies the payment method. */ "paymentMethodType"?: string; /** * The transfer reference. */ "reference"?: string; /** * The routing number of the bank transfer. */ "routingNumber"?: string; /** * The e-mail of the shopper, included if an e-mail was sent to the shopper. */ "shopperEmail"?: string; /** * The sort code of the bank transfer. */ "sortCode"?: string; "totalAmount"?: Amount | null; /** * The type of the action. */ "type": CheckoutBankTransferAction.TypeEnum; /** * Specifies the URL to redirect to. */ "url"?: string; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace CheckoutBankTransferAction { enum TypeEnum { BankTransfer = "bankTransfer" } }