UNPKG

@adyen/api-library

Version:

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

54 lines (53 loc) 1.32 kB
import { TransactionDescriptionInfo } from "./transactionDescriptionInfo"; export declare class PayByBankPlaidInfo { /** * Country Code. */ "countryCode"?: string; /** * Merchant logo (max. size 150kB). Format: Base64-encoded string. */ "logo"?: string; /** * The city the merchant is doing business in. */ "merchantCity"?: string; /** * Legal Business Name of the Merchant. */ "merchantLegalName"?: string; /** * Merchant shop url. */ "merchantShopUrl"?: string; /** * The state/province of the merchant. */ "merchantStateProvince"?: string; /** * The street address of the merchant. */ "merchantStreetAddress"?: string; "transactionDescription"?: TransactionDescriptionInfo | null; /** * The zip code of the account. */ "zipCode"?: 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(); }