xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
26 lines (25 loc) • 668 B
TypeScript
export declare class Employment {
/**
* Xero unique identifier for the payroll calendar of the employee
*/
'payrollCalendarID'?: string;
/**
* Xero unique identifier for the payrun calendar for the employee (Deprecated in version 1.1.6)
*/
'payRunCalendarID'?: string;
/**
* Start date of the employment (YYYY-MM-DD)
*/
'startDate'?: string;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}