ENUM

PaymentInstrumentType

Payment instrument used through the payment provider.

link GraphQL Schema definition

1enum PaymentInstrumentType {
2
3# Credit or debit card.
4CREDIT_CARD
5
6# Pay with Amazon.
7AMAZON
8
9# Pay with Paypal.
10PAYPAL
11
12# Pay with Google In-App Billing.
13GOOGLE_IAB
14
15# Pay with Apple In-App Purchase.
16APPLE_IAP
17
18# Xsolla only.
19SKRILL
20
21# Xsolla only.
22YANDEX
23
24# Xsolla only.
25WEBMONEY
26
27# Xsolla default.
28UNKNOWN
29
30# Pay with Wallet.
31WALLET
32
33# Pay with bank account.
34DIRECT_DEBIT
35}