{% if address.attention is not empty %}
- Att: {{ address.attention }}
{% endif %}
{% if address.title is not empty %}
- {{ address.title }}
{% endif %}
{% if address.firstName is not empty or address.lastName is not empty %}
-
{% if address.firstName is not empty %}
{{ address.firstName }}
{% endif %}
{% if address.lastName is not empty %}
{{ address.lastName }}
{% endif %}
{% endif %}
{% if address.businessName is not empty %}
- {{ address.businessName }}
{% endif %}
{% if address.businessTaxId is not empty %}
- {{ address.businessTaxId }}
{% endif %}
{% if address.address1 is not empty %}
- {{ address.address1 }}
{% endif %}
{% if address.address2 is not empty %}
- {{ address.address2 }}
{% endif %}
{% if address.zipCode is not empty or address.city is not empty %}
-
{% if address.zipCode is not empty %}
{{ address.zipCode }}
{% endif %}
{% if address.city is not empty %}
{{ address.city }}
{% endif %}
{% endif %}
{% if address.countryText is defined %}
- {{ address.countryText }}
{% endif %}
{% if address.stateText is defined %}
- {{ address.stateText }}
{% endif %}
{% if address.phone is not empty %}
- {{ address.phone }}
{% endif %}
{% if address.alternativePhone is not empty %}
- {{ address.alternativePhone }}
{% endif %}