I am Calling a Api Which is returning me this Response
[
    {
        "message": {
            "type": "String",
            "value": "Msg1,Msg2,Msg3,Msg4",
            "valueInfo": {}
        },
        "Decision": {
            "type": "Boolean",
            "value": false,
            "valueInfo": {}
        }
    },
    {
        "message": {
            "type": "String",
            "value": "[Msg2, Msg3,Msg5]",
            "valueInfo": {}
        },
        "Decision": {
            "type": "Boolean",
            "value": false,
            "valueInfo": {}
        }
    }
]
Now I have to Extract Message and Decision from response one by one How I can Do This. Not Down there could be Multiple Messages in an Object.
 
     
     
    