diff --git a/types.go b/types.go index 063c9ca..d8c9a82 100644 --- a/types.go +++ b/types.go @@ -14,3 +14,9 @@ type ConvOptions struct { //NotificationsEnabled bool `json:"notifications_enabled,omitempty"` CustomURL string `json:"custom_url,omitempty"` } + +// reflectStruct holds information about reflected structs! +type reflectStruct struct { + Name string + Value interface{} +}