@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
37 lines (36 loc) • 984 B
TypeScript
export declare class HKLocalAccountIdentification {
/**
* The 9- to 15-character bank account number (alphanumeric), without separators or whitespace. Starts with the 3-digit branch code.
*/
"accountNumber": string;
/**
* The 3-digit clearing code, without separators or whitespace.
*/
"clearingCode": string;
/**
* **hkLocal**
*/
"type": HKLocalAccountIdentification.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 HKLocalAccountIdentification {
enum TypeEnum {
HkLocal = "hkLocal"
}
}