xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
26 lines (25 loc) • 576 B
TypeScript
export declare class BankAccount {
/**
* Bank account name (max length = 32)
*/
'accountName': string;
/**
* Bank account number (digits only; max length = 8)
*/
'accountNumber': string;
/**
* Bank account sort code (6 digits)
*/
'sortCode': string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}