I have a database something like this:
{
"status": "OK",
"data": [
{
"id": 1,
"name": "Mike",
"informations": [
{
"id": 474,
"text": "My son",
"reference": "www.google.com",
}
]
}
I'm looking for this data through Alamofire. I would like to create a View, insert a Label and, in this Label, the text of the "text" attribute appears and in another Label, the name of the "name" attribute and another with the value "reference". What is the best way to do this?