@apideck/node
Version:
Apideck Node.js SDK
26 lines (25 loc) • 927 B
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* The employment status of the employee, indicating whether they are currently employed, inactive, terminated, or in another status.
* @export
* @enum {string}
*/
export declare enum EmploymentStatus {
active = "active",
inactive = "inactive",
terminated = "terminated",
other = "other"
}
export declare function EmploymentStatusFromJSON(json: any): EmploymentStatus;
export declare function EmploymentStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmploymentStatus;
export declare function EmploymentStatusToJSON(value?: EmploymentStatus | null): any;