# NextActionTypes

Next action the integrator must take to progress the payment.

* `CONFIRM` - Your customer needs to be redirected to a hosted payment page or confirm payment using a payment token. The `redirectUrl` will point to the hosted payment page.
* `FRICTIONLESS_CHALLENGE` - Your customer needs to be redirected to the frictionless 3D Secure challenge page provided by the bank. The `redirectUrl` will point to that page.
* `CHALLENGE` - Your customer needs to be redirected to the 3D Secure challenge page provided by the bank. The `redirectUrl` will point to that page.
* `COMPLETE` - The payment is completed. The `redirectUrl` will be the `completeUrl` if it was provided when the payment was created.
* `BIZUM_CHALLENGE` - Your customer will be redirected to the Bizum hosted payment page.

```
enum NextActionTypes {

  CONFIRM

  CHALLENGE

  COMPLETE

  FRICTIONLESS_CHALLENGE

  BIZUM_CHALLENGE

}
```

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

#### [`NextActionTypes.CONFIRM`](#confirm)[​](#confirm "Direct link to confirm")

#### [`NextActionTypes.CHALLENGE`](#challenge)[​](#challenge "Direct link to challenge")

#### [`NextActionTypes.COMPLETE`](#complete)[​](#complete "Direct link to complete")

#### [`NextActionTypes.FRICTIONLESS_CHALLENGE`](#frictionless-challenge)[​](#frictionless-challenge "Direct link to frictionless-challenge")

#### [`NextActionTypes.BIZUM_CHALLENGE`](#bizum-challenge)[​](#bizum-challenge "Direct link to bizum-challenge")

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

[`NextAction`](https://docs.monei.com/apis/graphql/types/objects/next-action/.md) object
