PaymentMethod: Difference between revisions
Jump to navigation
Jump to search
m (→Enum list) |
|||
Line 22: | Line 22: | ||
| ApplePay || 40 || The payment was completed via Apple Pay, using a bank card. | | ApplePay || 40 || The payment was completed via Apple Pay, using a bank card. | ||
|- | |- | ||
| BankInitiated || 50 || The payment was completed via | | BankInitiated || 50 || The payment was completed via payment initation through bank transfer. | ||
|- | |- | ||
| Other || 200 || The payment was completed by some other method.<br>'''Note:''' This is a reserved value for future method implementations, and should not be used explicitly. | | Other || 200 || The payment was completed by some other method.<br>'''Note:''' This is a reserved value for future method implementations, and should not be used explicitly. | ||
|- | |- | ||
|} | |} |
Revision as of 08:57, 15 February 2024
Payment completion method enumeration
This enum indicates the method used to attempt the completion of a payment.
API usage
This enum is used by the following API endpoints:
Enum list
Enum value | Byte / int value | Description |
---|---|---|
Unknown | 0 | The completion method is not known yet. |
BarionWallet | 10 | The payment was completed with e-money payment from a Barion wallet. |
BankCard | 20 | The payment was completed with a bank card. |
GooglePay | 30 | The payment was completed via Google Pay, using a bank card. |
ApplePay | 40 | The payment was completed via Apple Pay, using a bank card. |
BankInitiated | 50 | The payment was completed via payment initation through bank transfer. |
Other | 200 | The payment was completed by some other method. Note: This is a reserved value for future method implementations, and should not be used explicitly. |