{% for product in event.products %}
{% if product is not empty %}
{
{% if product.name is not empty %}
'name': '{{ product.name|replace({"'": "'"}) }}',
{% endif %}
{% if product.price is not empty %}
'price': '{{ product.price }}',
{% endif %}
{% if product.brand is not empty %}
'brand': '{{ product.brand }}',
{% endif %}
{% if product.category is not empty %}
'category': '{{ product.category }}',
{% endif %}
{% if product.variant is not empty %}
'variant': '{{ product.variant }}',
{% endif %}
{% if product.position is not empty %}
'position': '{{ product.position }}',
{% endif %}
{% if product.list is not empty %}
'list': '{{ product.list }}',
{% endif %}
{% if product.quantity is not empty %}
'quantity': '{{ product.quantity }}',
{% endif %}
{% if product.coupon is not empty %}
'coupon': '{{ product.coupon }}',
{% endif %}
'id': '{{ product.id }}'
}{% if loop.index < event.products|length %},{% endif %}
{% endif %}
{% endfor %}