Open mateusoliveira43 opened 11 months ago
If I use ErrorUnset = true and add mapstructure:"-" to my struct field, I get the following error:
ErrorUnset = true
mapstructure:"-"
* '' has unset fields: -
But since that field is ignored, it should not trigger an error, right?
Also tried using with IgnoreUntaggedFields = true, but got the same result
IgnoreUntaggedFields = true
If I use
ErrorUnset = true
and addmapstructure:"-"
to my struct field, I get the following error:But since that field is ignored, it should not trigger an error, right?
Also tried using with
IgnoreUntaggedFields = true
, but got the same result