Adding billing information to the Order Printer Shopify App custom template

What is the code for adding the billing invoice to an invoice template? Something similar to below but with billing_adress instead of shipping.

Thanks in advance!

{% if shipping_address %}

Shipping Details

{{ shipping_address.name }}
{% if shipping_address.company %} {{ shipping_address.company }}
{% endif %} {{ shipping_address.street }}
{{ shipping_address.city }} {{ shipping_address.province_code }} {{ shipping_address.zip | upcase }}
{{ shipping_address.country }}
{% endif %}

Exactly as you already guessed. Just change shipping_address to billing_address.

{% if billing_address %}
### Billing Details

**{{ billing_address.name }}**

{% if billing_address.company %}
{{ billing_address.company }}

{% endif %}
{{ billing_address.street }}

{{ billing_address.city }}
{{ billing_address.province_code }}
{{ billing_address.zip | upcase }}

{{ billing_address.country }}

{% endif %}

Or shorter, using the format_address filter:

{% if billing_address %}
  ### Billing Details

  
    **{{ billing_address.name }}**

    {{ billing_address | format_address }}
  

{% endif %}

Edited/removed post and created a new thread.