CustomFieldResponse

This variable represents a response to a custom field. It is accessed through the custom_field_responses array on the order

Sample code to add the custom field responses to the invoice:

{% for response in order.custom_field_responses %}
  <tr><th>{{ response.label }}</th><td>{{ response.response }}</td></tr>
{% endfor %}

id

Unique ID for this object.

label

Label of the custom field.

response

Customer’s response to the custom field.

integration_id

custom_X id for the custom field.