@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
37 lines (36 loc) • 1.12 kB
TypeScript
export declare class IbanAccountIdentificationRequirement {
/**
* Specifies the allowed prefixes for the international bank account number as defined in the ISO-13616 standard.
*/
"description"?: string;
/**
* Contains the list of allowed prefixes for international bank accounts. For example: NL, US, UK.
*/
"ibanPrefixes"?: Array<string>;
/**
* **ibanAccountIdentificationRequirement**
*/
"type": IbanAccountIdentificationRequirement.TypeEnum;
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 IbanAccountIdentificationRequirement {
enum TypeEnum {
IbanAccountIdentificationRequirement = "ibanAccountIdentificationRequirement"
}
}