# PaymentStatus

The status of the payment. Mirrors `ChargeStatus`.

* `SUCCEEDED` - The payment has been successfully processed and funds have been captured.
* `PENDING` - The payment is being processed and awaiting completion.
* `PENDING_PROCESSING` - Submitted to the processor, awaiting acknowledgement.
* `FAILED` - The payment attempt was unsuccessful.
* `CANCELED` - The payment was canceled before completion.
* `REFUNDED` - The full payment amount has been refunded.
* `PARTIALLY_REFUNDED` - Only a portion of the payment amount has been refunded.
* `AUTHORIZED` - The payment has been authorized but funds have not been captured yet.
* `EXPIRED` - The payment has expired without being completed.
* `PAID_OUT` - Funds settled to the merchant's bank account.

```
enum PaymentStatus {

  SUCCEEDED

  PENDING

  PENDING_PROCESSING

  FAILED

  CANCELED

  REFUNDED

  PARTIALLY_REFUNDED

  AUTHORIZED

  EXPIRED

  PAID_OUT

}
```

### Values[​](#values "Direct link to Values")

#### [`PaymentStatus.SUCCEEDED`](#succeeded)[​](#succeeded "Direct link to succeeded")

#### [`PaymentStatus.PENDING`](#pending)[​](#pending "Direct link to pending")

#### [`PaymentStatus.PENDING_PROCESSING`](#pending-processing)[​](#pending-processing "Direct link to pending-processing")

#### [`PaymentStatus.FAILED`](#failed)[​](#failed "Direct link to failed")

#### [`PaymentStatus.CANCELED`](#canceled)[​](#canceled "Direct link to canceled")

#### [`PaymentStatus.REFUNDED`](#refunded)[​](#refunded "Direct link to refunded")

#### [`PaymentStatus.PARTIALLY_REFUNDED`](#partially-refunded)[​](#partially-refunded "Direct link to partially-refunded")

#### [`PaymentStatus.AUTHORIZED`](#authorized)[​](#authorized "Direct link to authorized")

#### [`PaymentStatus.EXPIRED`](#expired)[​](#expired "Direct link to expired")

#### [`PaymentStatus.PAID_OUT`](#paid-out)[​](#paid-out "Direct link to paid-out")

### Member Of[​](#member-of "Direct link to Member Of")

[`LastPayment`](https://docs.monei.com/apis/graphql/types/objects/last-payment/.md) object ● [`Payment`](https://docs.monei.com/apis/graphql/types/objects/payment/.md) object
