payments
Version:
Lists various payment methods. Used by Wix Restaurants for payment configuration.
24 lines (17 loc) • 515 B
JavaScript
import { simpleFormValuesToMerchant, simpleMerchantToFormValues } from '../adapters';
export default {
id : 'com.mercurypay',
form : [
{type : 'string', name : 'merchantId'},
{type : 'string', name : 'password'},
],
countries : [
'US',
],
fields: [],
formValuesToMerchant : simpleFormValuesToMerchant,
merchantToFormValues : simpleMerchantToFormValues,
keyToMerchant : JSON.parse,
merchantToKey : JSON.stringify,
ranking: 3
};