if (typeof fbq === 'function') {
fbq('track',
'{{ event.type }}', {
{% if event.contentType is not empty %}
content_type: '{{ event.contentType }}',
{% endif %}
{% if event.contentIds is not empty %}
content_ids: '{{ event.contentIds|join('; ') }}',
{% endif %}
{% if event.value is not empty %}
value: '{{ event.value }}',
{% endif %}
{% if event.currency is not empty %}
currency: '{{ event.currency }}',
{% endif %}
{% if event.couponCode is not empty %}
couponcode: '{{ event.couponCode }}',
{% endif %}
{% if event.actionNumber is not empty %}
actionnumber: '{{ event.actionNumber }}'
{% endif %}
});
}