UNPKG

xero-node

Version:

Xero NodeJS OAuth 2.0 client for xero-node

25 lines (24 loc) 726 B
import { Account } from '././account'; import { SettingsTrackingCategories } from '././settingsTrackingCategories'; export declare class Settings { /** * Payroll Account details for SuperExpense, SuperLiabilty, WagesExpense, PAYGLiability & WagesPayable. */ 'accounts'?: Array<Account>; 'trackingCategories'?: SettingsTrackingCategories; /** * Number of days in the Payroll year */ 'daysInPayrollYear'?: number; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }