MFExecutePaymentResponse.fromJson constructor

MFExecutePaymentResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

MFExecutePaymentResponse.fromJson(Map<String, dynamic> json) {
  invoiceId = json['InvoiceId'];
  isDirectPayment = json['IsDirectPayment'];
  paymentURL = json['PaymentURL'];
  customerReference = json['CustomerReference'];
  userDefinedField = json['UserDefinedField'];
  recurringId = json['RecurringId'];
}