xero-node
Version:
Xero NodeJS OAuth 2.0 client for xero-node
13 lines • 570 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EmploymentStatus = void 0;
/**
* The employment status of the employee.
*/
var EmploymentStatus;
(function (EmploymentStatus) {
EmploymentStatus[EmploymentStatus["Employee"] = 'Employee'] = "Employee";
EmploymentStatus[EmploymentStatus["Worker"] = 'Worker'] = "Worker";
EmploymentStatus[EmploymentStatus["Unspecified"] = 'Unspecified'] = "Unspecified";
})(EmploymentStatus || (exports.EmploymentStatus = EmploymentStatus = {}));
//# sourceMappingURL=employmentStatus.js.map