{"one": "oone", "two": ["three", "four"]}
Можно ли его unmarshalнуть в
type Numbers struct {
One string
Two string
}
чтобы получилось
numbrs.One = "oone"
nymbrs.Two = "[\"three\", \"four\"]"
?
type MyStruct struct { One string Two json.RawMessage }
Обсуждают сегодня