> For the complete documentation index, see [llms.txt](https://developer.firmhouse.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.firmhouse.com/sdks/firmhouse-sdk/reference/enumerations/refund-status.md).

# RefundStatus

## Enumeration Members

### Canceled

```ts
Canceled: "CANCELED";
```

The refund was canceled.

***

### Failed

```ts
Failed: "FAILED";
```

The refund has failed. For example due to a closed bank or card. The payment service provider will return the amount to your account balance.

***

### Pending

```ts
Pending: "PENDING";
```

The refund is sent to the payment service provider. In some payment service providers you can still cancel the refund at this stage.

***

### Processing

```ts
Processing: "PROCESSING";
```

The refund is being processed.

***

### Queued

```ts
Queued: "QUEUED";
```

The refund is queued to be processed. A refund might be in this status when your account balance at the payment provider is not sufficient to initiate the refund at this time.

***

### Succeeded

```ts
Succeeded: "SUCCEEDED";
```

The refund was succesful and has been settled to your customer.
