I am creating this JSON object
 {
    "attachment": {
        "type": "template",
        "payload": {
            "template_type": "generic",
            "image_aspect_ratio": "square"
            "elements": [
                new CreateBallon(results[rand])
            ]
        }
    }
}
I want to set the image_aspect_ratio in only if elements[0].someProp is present. 
How can I do that?
 
    