how to use conditionalRemove inside repeating complexeItems list
we have to show the address if only showAddress = True
the json is smthg like
{
"complexItems": [
{
"name": "First Name",
"showAddress": True,
"address": { "street" : "street 1" , "city" : "city 1"}
},
{
"name": "Second name",
"showAddress": False,
"address": { "street" : "street 2" , "city" : "city 2"}
}
]
}
how to achieve the result