The status of the upload, an enum of ACTIVE, SUCCESSFUL
import com.glean.api_client.glean_api_client.models.components.BulkUploadHistoryEventStatus;
BulkUploadHistoryEventStatus value = BulkUploadHistoryEventStatus.ACTIVE;
// Open enum: use .of() to create instances from custom string values
BulkUploadHistoryEventStatus custom = BulkUploadHistoryEventStatus.of("custom_value");| Name | Value |
|---|---|
ACTIVE |
ACTIVE |
SUCCESSFUL |
SUCCESSFUL |