@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
51 lines (50 loc) • 1.43 kB
TypeScript
import { AccountIdentifiers } from "./accountIdentifiers";
import { AccountParty } from "./accountParty";
import { AccountType } from "./accountType";
export declare class VerifiedAccount {
/**
* The unique identifier for the bank account.
*/
"accountId": string;
/**
* The name of the bank account. This name is assigned by the banking institution, and it describes the type of bank account.
*/
"accountName": string;
/**
* The account number of the bank account.
*/
"accountNumber": string;
"accountType": AccountType;
/**
* The name of the banking institution where the bank account is held.
*/
"bankName"?: string;
/**
* The currency of the funds in the bank account.
*/
"currency": string;
"identifiers": AccountIdentifiers;
/**
* Contains details of all parties associated with the report.
*/
"parties": Array<AccountParty>;
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 VerifiedAccount {
}