{% for item in event.items %}
{% if item is not empty %}
{
'item_id': '{{ item.id }}',
{% if item.itemName is not empty %}
'item_name': '{{ item.itemName|replace({"'": "'"}) }}',
{% endif %}
{% if item.quantity is not empty %}
'quantity': '{{ item.quantity }}',
{% endif %}
{% if item.price is not empty %}
'price': '{{ item.price }}',
{% endif %}
{% if item.coupon is not empty %}
'coupon': '{{ item.coupon }}',
{% endif %}
}
{% if loop.index < event.items|length %},{% endif %}
{% endif %}
{% endfor %}