Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 485 Bytes

File metadata and controls

23 lines (15 loc) · 485 Bytes

EmployeeStatus

The status of the employee.

Example Usage

import com.apideck.unify.models.components.EmployeeStatus;

EmployeeStatus value = EmployeeStatus.ACTIVE;

// Open enum: use .of() to create instances from custom string values
EmployeeStatus custom = EmployeeStatus.of("custom_value");

Values

Name Value
ACTIVE active
INACTIVE inactive
TERMINATED terminated