From 8ccc2ad1706de1a582cc5ce835f87efbcd4c99de Mon Sep 17 00:00:00 2001 From: Steven Polley Date: Sun, 5 Aug 2018 17:00:58 -0600 Subject: [PATCH] Update comment on custom field --- 3.0/connectwise/service.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/3.0/connectwise/service.go b/3.0/connectwise/service.go index 02a57fa..aaad0c8 100644 --- a/3.0/connectwise/service.go +++ b/3.0/connectwise/service.go @@ -260,7 +260,8 @@ type Ticket struct { Type string `json:"type"` EntryMethod string `json:"entryMethod"` NumberOfDecimals int `json:"numberOfDecimals"` - Value bool `json:"value"` + //It's not always a string. I need to somehow *puts on sunglasses*... reflect on this as this is a dynamic type. + Value string `json:"value"` } `json:"customFields"` RequiredDate time.Time `json:"requiredDate,omitempty"` BudgetHours float64 `json:"budgetHours,omitempty"`