payMMClient method

String payMMClient (String network, String phoneNumber, String amount, String narration, String currency, String name)

To pay a Mobile Money subscriber use the method payMMUGClient().

The payMMUGClient() has 6 parameters payMMUGClient(network, phoneNumber, amount, narration, currency, name)

Where;

network: is a String specifying the IP address of client

phoneNumber: is a String specifying the mobile money phone number of the client

amount: is a String specifying the amount of money to collect from a client

narration: is a String specifying the reason for payment

currency: is a String specifying the currency of the amount to send

name: is a String specifying full name of the mobile money subscriber in "phoneNumber" receiving the money

Implementation

String payMMClient(String network, String phoneNumber, String amount,
    String narration, String currency, String name) {
  return payMMClientReq(
      network, phoneNumber, amount, secretKey, narration, currency, name);
}