UNPKG

wallee

Version:
37 lines (36 loc) 728 B
declare class BankAccountType { /** * The localized description of the object. */ 'description'?: { [key: string]: string; }; /** * A unique identifier for the object. */ 'id'?: number; /** * */ 'identifierName'?: { [key: string]: string; }; /** * The localized name of the object. */ 'name'?: { [key: string]: string; }; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export { BankAccountType };