From 81532055b399e8981b8ebc8a4ab2a3ed6040f015 Mon Sep 17 00:00:00 2001 From: Tomer Heber Date: Fri, 29 Sep 2023 18:46:20 -0500 Subject: [PATCH] fix api --- client/project_budget.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/project_budget.go b/client/project_budget.go index 85152d83..96b53201 100644 --- a/client/project_budget.go +++ b/client/project_budget.go @@ -11,7 +11,7 @@ type ProjectBudget struct { type ProjectBudgetUpdatePayload struct { Amount int `json:"amount"` Timeframe string `json:"timeframe"` - Thresholds []int `json:"thresholds,omitempty"` + Thresholds []int `json:"thresholds"` } func (client *ApiClient) ProjectBudget(projectId string) (*ProjectBudget, error) {