UNPKG

xero-node

Version:

Xero NodeJS OAuth 2.0 client for xero-node

38 lines (37 loc) 962 B
import { Contracts } from '././contracts'; import { NICategory } from '././nICategory'; import { NICategoryLetter } from '././nICategoryLetter'; export declare class Employment { /** * Xero unique identifier for the payroll calendar of the employee */ 'payrollCalendarID': string; /** * Start date of the employment (YYYY-MM-DD) */ 'startDate': string; /** * The employment number of the employee */ 'employeeNumber': string; 'niCategory'?: NICategoryLetter; /** * The employee\'s NI categories */ 'niCategories': Array<NICategory>; /** * The employee\'s contracts */ 'contracts'?: Array<Contracts>; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }