---
title: ReturnFee - Customer API
description: A fee associated with the processing of a return.
api_version: unstable
api_name: customer
source_url:
  html: 'https://shopify.dev/docs/api/customer/unstable/interfaces/ReturnFee'
  md: 'https://shopify.dev/docs/api/customer/unstable/interfaces/ReturnFee.md'
---

# Return​Fee

interface

A fee associated with the processing of a return.

## Fields

* amount​Set

  [Money​Bag!](https://shopify.dev/docs/api/customer/unstable/objects/MoneyBag)

  non-null[Pre-auth accessible](https://shopify.dev/docs/apps/build/customer-accounts/order-status-page#customer-account-api)

  The total monetary value of the fee in shop and presentment currencies.

* title

  [String!](https://shopify.dev/docs/api/customer/unstable/scalars/String)

  non-null

  Human-readable name of the fee.

***

##### Variables

```json
{
	"amountSet": "",
	"title": ""
}
```

##### Schema

```graphql
interface ReturnFee {
  amountSet: MoneyBag!
  title: String!
}
```
