@meerasolution/react-native-ms-upi-payment

2.0.2 • Public • Published

react-native-ms-upi-payment

Getting started

$ npm install @meerasolution/react-native-ms-upi-payment --save
or
$ yarn add @meerasolution/react-native-ms-upi-payment

Mostly automatic installation

$ react-native link @meerasolution/react-native-ms-upi-payment

Usage

import MsUpiPayment from '@meerasolution/react-native-ms-upi-payment';

async calledBtn() {
    let txnId = 'MSTX' + Math.floor(Math.random() * 100000) + 1; // Transection ID
    let txnRefId = 'MSTXF' + Math.floor(Math.random() * 1000) + 1; // Transection Ref ID
    try {
      let data = await MsUpiPayment.makePayment({
        VPA: '7987060197@okbizaxis', // Required
        payeeName: 'Meera Solution', // Required
        txnID: txnId, // Required
        txnRefId: txnRefId, // Required
        payeeAmount: '1', // Required
        currencyCode: 'INR', // Optional (Default 'INR')
        txnNote: 'Test MS Payment', // Optional
        refUrl: '', // Optional
      });
      console.log('payment response');
      console.log(data);
    } catch (e) {
      console.log('Error');
      Alert.alert('OOPS!', e.message);
      console.log(e.message);
    }
}

Issue

For Any Issue mail us on kkmadhpuriya@gmail.com

Package Sidebar

Install

npm i @meerasolution/react-native-ms-upi-payment

Weekly Downloads

5

Version

2.0.2

License

MIT

Unpacked Size

48.8 kB

Total Files

19

Last publish

Collaborators

  • kkmadhpuriya