Your RCS Cards
{% for card in rich_cards %}
{{ card.title }}
{% if card.media %}
{% endif %}
{{ card.text }}
{% if card.buttons %}
{% for button in card.buttons %} {% if button.type == "weburl" %}
{{ button.title }}
{% else %}
{{ button.title }}
{% endif %} {% endfor %}
{% endif %} {% if card.quickReplies %}
{% for reply in card.quickReplies %} {% if reply.type == "postback" %}
{{ reply.title }}
{% elif reply.type == "call" %}
{{ reply.title }}
{% else %}
{{ reply.title }}
{% endif %} {% endfor %}
{% endif %}
{% endfor %}