# Return The `return` object represents a return request for an order, including items, status, fees, and related information. ## Usage Example ```liquid {%- comment -%} Show return summary and items {%- endcomment -%}

Return #{{ return.return_number }}

Status: {{ return.return_status }}

Created at: {{ return.created_at | date: '%Y-%m-%d' }}

Note: {{ return.return_note }}

Total refund: {{ return.total_price | money }}

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