I tried to answer this question in StackOverFlow with json-to-go, but I've found a bug, this json
[[[{"abc": "a1"}]]] has to be converted as slice of slices:
type AutoGenerated [][][]struct {
Abc string `json:"abc"`
}
// or
type AutoGenerated [][]interface{}
I tried to answer this question in StackOverFlow with json-to-go, but I've found a bug, this json
[[[{"abc": "a1"}]]]
has to be converted as slice of slices:To be corrected Unmarshal() like here