paynow = Paynow(
‘1482828282’,
'9079592a-d8e5-4f79-7447474747,
‘http://www.google.com/search?q=returnurl’,
‘http://www.google.com/search?q=resulturl’
)
payment = paynow.create_payment(‘user’, ‘info@cost.cz’)
toPay = str(amount)
payment_id = generateId()
payment.add(payment_id, toPay)
if paymentType == ‘MOBILE’:
response = paynow.send_mobile(payment, walletNumber, mobileType)
I would like to recieve money both in US$ and RTGS from my clients through mobile payments and I would like to know how I can do that ?