It would be nice to have a way to test multiple attributes. Something which can help with:
if (jsonObj.contains("a")) {
// fetch, transform and return value of attribute a
} else if (jsonObj.contains("b")) {
// fetch, transform and return value of attribute b
}
It would be nice to have a way to test multiple attributes. Something which can help with: