-
Notifications
You must be signed in to change notification settings - Fork 2
Additional information
James Goodwin edited this page Oct 13, 2016
·
16 revisions
Judopay Xamarin SDK allows you to enable additional configurations depending on your business necessities:
The default card networks accepted by our Xamarin SDK are Visa and MasterCard, Maestro, and Amex. If your judo account does not support Maestro cards or Amex cards, the card input form can show a relevant error message by these particular card networks to not be supported:
var judo = new Judo()
{
// Add the following to existing Judo configuration to disable Maestro
MaestroAccepted = false,
// Add the following to existing Judo configuration to disable Amex
AmexAccepted = false
};