added more data types to CustomField struct

This commit is contained in:
Bastian de Byl
2023-07-27 13:44:06 -04:00
parent c18376739b
commit 3816c67b95

View File

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