xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
41 lines (40 loc) • 827 B
TypeScript
export declare class Account {
/**
* The Xero identifier for Settings.
*/
'accountID'?: string;
/**
* The assigned AccountType
*/
'type'?: Account.TypeEnum;
/**
* A unique 3 digit number for each Account
*/
'code'?: string;
/**
* Name of the Account.
*/
'name'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace Account {
enum TypeEnum {
BANK,
EMPLOYERSNIC,
NICLIABILITY,
PAYEECONTRIBUTION,
PAYELIABILITY,
WAGESPAYABLE,
WAGESEXPENSE
}
}