toJson method

Map<String?, dynamic> toJson()

Implementation

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