diff --git a/algolia/ingestion/model_run_outcome.go b/algolia/ingestion/model_run_outcome.go index f49a4dddb..5ecd3f281 100644 --- a/algolia/ingestion/model_run_outcome.go +++ b/algolia/ingestion/model_run_outcome.go @@ -11,16 +11,14 @@ type RunOutcome string // List of RunOutcome. const ( - RUN_OUTCOME_SUCCESS RunOutcome = "success" - RUN_OUTCOME_FAILURE RunOutcome = "failure" - RUN_OUTCOME_PROCESSING RunOutcome = "processing" + RUN_OUTCOME_SUCCESS RunOutcome = "success" + RUN_OUTCOME_FAILURE RunOutcome = "failure" ) // All allowed values of RunOutcome enum. var AllowedRunOutcomeEnumValues = []RunOutcome{ "success", "failure", - "processing", } func (v *RunOutcome) UnmarshalJSON(src []byte) error {