## Return The `return` object represents a return request for an order, including status and totals. ```liquid {%- comment -%} Show return summary {%- endcomment -%}

Return #{{ return.return_number }}

Status: {{ return.return_status }}

Total: {{ return.total_price | money }}

``` ## return_number Returns the return number. ## created_at Returns the date when this return was created at. ## discounts Return [discount lines](/reference/liquid/objects/print/order_discount/) ## subtotal_price Returns the subtotal. ## total_price Returns the total. ## total_net_price Returns the net total. ## total_tax Returns the total tax. ## tax_lines Returns the [tax lines](/reference/liquid/objects/print/order_tax_line/). ## return_status Returns the return status ## return_note Returns the note for this return. ## payment_fee Returns the total payment fee. ## shipping_price Returns the total shipping costs. ## items Returns the [return line items](/reference/liquid/objects/print/order_line_item/). ## billing_address Returns the [billing address](/reference/liquid/objects/print/address/) for this order. ## payment_methods Returns the [payment methods](/reference/liquid/objects/print/order_payment_method/) for this order. ## shipping_methods Returns the [shipping methods](/reference/liquid/objects/print/order_shipping_method/) for this order. ## num_items Returns the amount of line items in this return.