@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
32 lines (31 loc) • 1.12 kB
TypeScript
import { ACHAccountIdentifier } from "./aCHAccountIdentifier";
import { BACSAccountIdentifier } from "./bACSAccountIdentifier";
import { BSBAccountIdentifier } from "./bSBAccountIdentifier";
import { EFTAccountIdentifier } from "./eFTAccountIdentifier";
import { IBANAccountIdentifier } from "./iBANAccountIdentifier";
import { RIXAccountIdentifier } from "./rIXAccountIdentifier";
export declare class AccountIdentifiers {
"ach"?: ACHAccountIdentifier | null;
"bacs"?: BACSAccountIdentifier | null;
"bsb"?: BSBAccountIdentifier | null;
"eft"?: EFTAccountIdentifier | null;
"iban"?: IBANAccountIdentifier | null;
"rix"?: RIXAccountIdentifier | null;
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();
}