From b6d96444b52528a6880e1ca547660c554753a23e Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Mon, 30 Jul 2018 12:44:35 -0600 Subject: [PATCH] Add bool to custom field - this isn't good long term? --- 3.0/connectwise/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/3.0/connectwise/service.go b/3.0/connectwise/service.go index 8d9cd3e..02a57fa 100644 --- a/3.0/connectwise/service.go +++ b/3.0/connectwise/service.go @@ -260,6 +260,7 @@ type Ticket struct { Type string `json:"type"` EntryMethod string `json:"entryMethod"` NumberOfDecimals int `json:"numberOfDecimals"` + Value bool `json:"value"` } `json:"customFields"` RequiredDate time.Time `json:"requiredDate,omitempty"` BudgetHours float64 `json:"budgetHours,omitempty"`