I have a json string like so:
{
"user-TESTING": [{
"name": "SERVICE",
"label": "another test",
"tags": [],
"credentials": {
"PASSWORD": "TestMe",
"NAME": "http://www.blahblah",
"USER": "TEST"
},
"syslog_url": ""
}]
}
How would I format my class so I can use gson.fromJson(<jsonString>, <class>)
?