ENUM

CheckoutAction

Actions required when initiating a checkout flow.

link GraphQL Schema definition

1enum CheckoutAction {
2
3# Action to block saved payment methods.
4BLOCK_SAVED_PAYMENT_METHOD
5
6# Action to show velocity limit CTA.
7EXCEEDED_VELOCITY_LIMITS
8
9# Action to show the user enabled 2FA before saving their payment method.
10VERIFIED_SAVED_PAYMENT_METHOD
11
12# Action to disable new credit cards from being added on purchases.
13DISABLE_NEW_CREDIT_CARD
14
15# Action to disable new credit cards from being added on purchases.
16DISABLE_NEW_DIRECT_DEBIT
17
18# Action to indicate this user is authorized to make purchases.
19AUTHORIZED_USER
20
21# Action to indicate xsolla should be prioritized.
22PRIORITIZE_XSOLLA
23}