xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
28 lines (27 loc) • 588 B
TypeScript
import { AccountType } from '././accountType';
export declare class Account {
/**
* Xero identifier for accounts
*/
'accountID'?: string;
'type'?: AccountType;
/**
* Customer defined account code
*/
'code'?: string;
/**
* Name of account
*/
'name'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}