@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
37 lines (36 loc) • 1.09 kB
TypeScript
export declare class SELocalAccountIdentification {
/**
* The 7- to 10-digit bank account number ([Bankkontonummer](https://sv.wikipedia.org/wiki/Bankkonto)), without the clearing number, separators, or whitespace.
*/
"accountNumber": string;
/**
* The 4- to 5-digit clearing number ([Clearingnummer](https://sv.wikipedia.org/wiki/Clearingnummer)), without separators or whitespace.
*/
"clearingNumber": string;
/**
* **seLocal**
*/
"type": SELocalAccountIdentification.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 SELocalAccountIdentification {
enum TypeEnum {
SeLocal = "seLocal"
}
}