Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 506 Bytes

File metadata and controls

22 lines (14 loc) · 506 Bytes

AgentExecutionStatus

The status of the run. One of 'error', 'success'.

Example Usage

import com.glean.api_client.glean_api_client.models.components.AgentExecutionStatus;

AgentExecutionStatus value = AgentExecutionStatus.ERROR;

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

Values

Name Value
ERROR error
SUCCESS success