From ec6878077e09afbdeff492fc396a4e4d9997c307 Mon Sep 17 00:00:00 2001 From: Gekuro Date: Thu, 24 Aug 2023 17:25:56 +0100 Subject: [PATCH] Case struct UdpatedOn field typo fix --- case.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/case.go b/case.go index c916345..e8c4b04 100644 --- a/case.go +++ b/case.go @@ -21,7 +21,7 @@ type Case struct { Title string `json:"title"` TypeID int `json:"type_id"` UpdatedBy int `json:"updated_by"` - UdpatedOn int `json:"updated_on"` + UpdatedOn int `json:"updated_on"` State int `json:"custom_state,omitempty"` CustomTestRunConfig []int `json:"custom_testrun_configs,omitempty"` }