@adyen/api-library
Version:
The Adyen API Library for NodeJS enables you to work with Adyen APIs.
39 lines (38 loc) • 1.13 kB
TypeScript
import { AdditionalBankIdentification } from "./additionalBankIdentification";
export declare class NumberAndBicAccountIdentification {
/**
* The bank account number, without separators or whitespace. The length and format depends on the bank or country.
*/
"accountNumber": string;
"additionalBankIdentification"?: AdditionalBankIdentification | null;
/**
* The bank\'s 8- or 11-character BIC or SWIFT code.
*/
"bic": string;
/**
* **numberAndBic**
*/
"type": NumberAndBicAccountIdentification.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 NumberAndBicAccountIdentification {
enum TypeEnum {
NumberAndBic = "numberAndBic"
}
}