From 8b18d507b737ce7caa86b67e06c4cc96bdb0173a Mon Sep 17 00:00:00 2001 From: algolia-bot Date: Thu, 16 Jan 2025 17:07:14 +0000 Subject: [PATCH] fix(specs): remove the processing outcome (generated) https://github.com/algolia/api-clients-automation/pull/4359 Co-authored-by: algolia-bot Co-authored-by: Pierre Millot --- algolia/ingestion/model_run_outcome.go | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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 {