# Address object
# address.address1
Returns the first part of the address.
# address.address2
Returns the second part of the address.
# address.city
Returns the city of the address.
# address.company
Returns the company of the address.
# address.country
Returns the country of the address.
# address.country_code
Returns the country code of the address.
# address.country_id
Returns the ISO 3166-1 numeric value for the country.
Example for Denmark:
{{ address.country_id }}
Will return:
208
Example for Sweden:
{{ address.country_id }}
Will return:
752
# address.first_name
Returns the first name associated to the address.
# address.id
Returns the unique id of the address.
# address.last_name
Returns the last name.
# address.name
Returns the name of the address.
# address.province
Returns the province of the address.
# address.province_code
Returns the province code of the address.
# address.street
Returns the street of the address.
# address.zip
Returns the zip number of the address.