MFInvoiceTransaction.fromJson constructor
MFInvoiceTransaction.fromJson(
- Map<String, dynamic> json
)
Implementation
MFInvoiceTransaction.fromJson(Map<String, dynamic> json) {
transactionDate = json['TransactionDate'];
paymentGateway = json['PaymentGateway'];
referenceId = json['ReferenceId'];
trackId = json['TrackId'];
transactionId = json['TransactionId'];
paymentId = json['PaymentId'];
authorizationId = json['AuthorizationId'];
transactionStatus = json['TransactionStatus'];
transationValue = json['TransationValue'];
customerServiceCharge = json['CustomerServiceCharge'];
totalServiceCharge = json['TotalServiceCharge'];
dueValue = json['DueValue'];
paidCurrency = json['PaidCurrency'];
paidCurrencyValue = json['PaidCurrencyValue'];
ipAddress = json['IpAddress'];
country = json['Country'];
currency = json['Currency'];
error = json['Error'];
cardNumber = json['CardNumber'];
errorCode = json['ErrorCode'];
}