Compare commits

...

1 Commits

Author SHA1 Message Date
Bastian de Byl
3816c67b95 added more data types to CustomField struct 2023-07-27 13:44:06 -04:00

View File

@@ -39,4 +39,7 @@ type Client struct {
type CustomField struct { type CustomField struct {
Name string `json:"name"` Name string `json:"name"`
Value string `json:"value"` Value string `json:"value"`
Type string `json:"type,omitempty"`
Options []string `json:"options,omitempty"`
Required bool `json:"required"`
} }