I have a classes that looks like this:
class Foo {
var bar = Int()
}
class Bar {
var baz = String()
var arr = [Foo]()
}
and I have an object of Bar structure that I need to serialize to JSON:
let instance = Bar()
What is the more elegant way to do it via standard library or some third-party libraries?
Thanks in advance.
I suggest taking this approach: