PaymentFields.fromJson constructor

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

Implementation

PaymentFields.fromJson(Map<String?, dynamic> json) {
  upFrontAmount = json['upFrontAmount'];
  creditAdminTax = json['creditAdminTax'];
  firstQuotaDate = json['firstQuotaDate'];
  hasSignature = json['hasSignature'];
  hasPrintedClientReceipt = json['hasPrintedClientReceipt'];
  hasWarranty = json['hasWarranty'];
  interestAmount = json['interestAmount'];
  serviceTax = json['serviceTax'];
  cityState = json['cityState'];
  hasSentReference = json['hasSentReference'];
  originalTransactionId = json['originalTransactionId'];
  originalTransactionDate = json['originalTransactionDate'];
  signatureMd5 = json['signatureMd5'];
  hasConnectivity = json['hasConnectivity'];
  productName = json['productName'];
  entranceMode = json['entranceMode'];
  firstQuotaAmount = json['firstQuotaAmount'];
  cardCaptureType = json['cardCaptureType'];
  requestDate = json['requestDate'];
  boardingTax = json['boardingTax'];
  numberOfQuotas = json['numberOfQuotas'];
  isDoubleFontPrintAllowed = json['isDoubleFontPrintAllowed'];
  bin = json['bin'];
  hasPassword = json['hasPassword'];
  primaryProductCode = json['primaryProductCode'];
  isExternalCall = json['isExternalCall'];
  primaryProductName = json['primaryProductName'];
  receiptPrintPermission = json['receiptPrintPermission'];
  isOnlyIntegrationCancelable = json['isOnlyIntegrationCancelable'];
  externalCallMerchantCode = json['externalCallMerchantCode'];
  isFinancialProduct = json['isFinancialProduct'];
  applicationName = json['applicationName'];
  changeAmount = json['changeAmount'];
  v40Code = json['v40Code'];
  secondaryProductName = json['secondaryProductName'];
  paymentTransactionId = json['paymentTransactionId'];
  avaiableBalance = json['avaiableBalance'];
  pan = json['pan'];
  secondaryProductCode = json['secondaryProductCode'];
  hasSentMerchantCode = json['hasSentMerchantCode'];
  documentType = json['documentType'];
  statusCode = json['statusCode'];
  merchantAddress = json['merchantAddress'];
  merchantCode = json['merchantCode'];
  paymentTypeCode = json['paymentTypeCode'];
  merchantName = json['merchantName'];
  totalizerCode = json['totalizerCode'];
  applicationId = json['applicationId'];
  signatureBytes = json['signatureBytes'];
  document = json['document'];
}