InvoiceTransactions.fromJson constructor

InvoiceTransactions.fromJson(Map<String, dynamic> json)

Implementation

InvoiceTransactions.fromJson(Map<String, dynamic> json) {
  _authorizationId = json['AuthorizationId'];
  _currency = json['Currency'];
  _customerServiceCharge = json['CustomerServiceCharge'];
  _dueValue = json['DueValue'];
  _paidCurrency = json['PaidCurrency'];
  _paidCurrencyValue = json['PaidCurrencyValue'];
  _paymentGateway = json['PaymentGateway'];
  _paymentId = json['PaymentId'];
  _referenceId = json['ReferenceId'];
  _trackId = json['TrackId'];
  _transactionDate = json['TransactionDate'];
  _transactionId = json['TransactionId'];
  _transactionStatus = json['TransactionStatus'];
  _transationValue = json['TransationValue'];
}