payments
Version:
Lists various payment methods. Used by Wix Restaurants for payment configuration.
25 lines (18 loc) • 558 B
JavaScript
import { simpleFormValuesToMerchant, simpleMerchantToFormValues } from '../adapters';
export default {
id : 'com.paybox',
form : [
{type : 'string', name : 'site'},
{type : 'string', name : 'rang'},
{type : 'string', name : 'cle'},
],
countries : [
'BE', 'FR', 'NL'
],
fields: ['csc'],
formValuesToMerchant : simpleFormValuesToMerchant,
merchantToFormValues : simpleMerchantToFormValues,
keyToMerchant : JSON.parse,
merchantToKey : JSON.stringify,
ranking: 4
};