xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
42 lines (41 loc) • 868 B
TypeScript
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;
/**
* The NI Category of the employee
*/
'niCategory'?: Employment.NiCategoryEnum;
static discriminator: string | undefined;
static attributeTypeMap: Array<{
name: string;
baseName: string;
type: string;
}>;
static getAttributeTypeMap(): {
name: string;
baseName: string;
type: string;
}[];
}
export declare namespace Employment {
enum NiCategoryEnum {
A,
B,
C,
H,
J,
M,
Z,
X
}
}