Open al3xandru opened 2 years ago
Is there a way to flatten the structure when unmarshalling?
Example: given
<dict> <key>URIDictionary</key> <dict> <key>title</key> <string>Inspection and the limits of trust.</string> </dict> ... </dict>
would it be possible to read the title key directly without creating a new struct for URIDictionary?
title
struct
URIDictionary
thank you
Is there a way to flatten the structure when unmarshalling?
Example: given
would it be possible to read the
title
key directly without creating a newstruct
forURIDictionary
?thank you