toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = new Map<String, dynamic>();
  data['Msisdn'] = this.msisdn;
  data['ResponseCode'] = this.responseCode;
  data['ResponseDescription'] = this.responseDescription;
  data['TransactionId'] = this.transactionId;
  data['MerchantCode'] = this.merchantCode;
  data['RefId'] = this.refId;
  return data;
}