-
Notifications
You must be signed in to change notification settings - Fork 6
Payment Types
pleykov edited this page Jun 22, 2017
·
2 revisions
The Kount RIS Dotnet SDK defines a group of objects representing various payment types. Using those payment types with the Request.SetPayment(...)
method automatically sets the required PTYP
parameter and other parameters corresponding to the selected payment type.
Supported payment types:
- Apple -
PaymentTypes.Apple = "APAY"
- BPay -
PaymentTypes.Bpay = "BPAY"
- Credit card -
PaymentTypes.Card = "CARD"
- Carte Bleue -
PaymentTypes.CarteBleue = "CARTE_BLEUE"
- The check -
PaymentTypes.Check = "CHEK"
- ELV -
PaymentTypes.Elv = "ELV"
- Green Dot MoneyPak -
PaymentTypes.GreenDotMoneyPak = "GDMP"
- Gift card -
PaymentTypes.GiftCard = "GIFT"
- GiroPay -
PaymentTypes.GiroPay = "GIROPAY"
- Google -
PaymentTypes.Google = "GOOG"
- Interac -
PaymentTypes.Interac = "INTERAC"
- Mercade Pago -
PaymentTypes.MercadePago = "MERCADE_PAGO"
- Neteller -
PaymentTypes.Neteller = "NETELLER"
- Poli -
PaymentTypes.Poli = "POLI"
- Paypal -
PaymentTypes.PyplType = "PYPL"
- Single Euro Payments Area -
PaymentTypes.SingleEuroPaymentsArea = "SEPA"
- Skrill/Moneybookers -
PaymentTypes.Skrill = "SKRILL"
- Sofort -
PaymentTypes.Sofort = "SOFORT"
There are also several "system" payment types:
- No payment type -
PaymentTypes.None = "NONE"
- Bill me later -
PaymentTypes.Blml = "BLML"
- Token -
PaymentTypes.Token = "TOKEN"
ℹ️ Note, new
enum
definition PaymentTypes is added in version6.5.1
.
- Home
- Installation
- Adding Configuration
-
Making Your First Call
- [[
C#
Example for RIS | Making-First-Call#c-example-for-ris ]] - Explanation
- [[
- Response description
- SDK Integration Tests
- Connection Troubleshooting