toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['APIConnect'] = this.aPIConnect;
data['amount'] = this.amount;
data['bank_tran_id'] = this.bankTranId;
data['base_fair'] = this.baseFair;
data['card_brand'] = this.cardBrand;
data['card_issuer'] = this.cardIssuer;
data['card_issuer_country'] = this.cardIssuerCountry;
data['card_issuer_country_code'] = this.cardIssuerCountryCode;
data['card_no'] = this.cardNo;
data['card_type'] = this.cardType;
data['currency_amount'] = this.currencyAmount;
data['currency_rate'] = this.currencyRate;
data['currency_type'] = this.currencyType;
data['gw_version'] = this.gwVersion;
data['risk_level'] = this.riskLevel;
data['risk_title'] = this.riskTitle;
data['sessionkey'] = this.sessionkey;
data['status'] = this.status;
data['store_amount'] = this.storeAmount;
data['tran_date'] = this.tranDate;
data['tran_id'] = this.tranId;
data['val_id'] = this.valId;
data['validated_on'] = this.validatedOn;
data['value_a'] = this.valueA;
data['value_b'] = this.valueB;
data['value_c'] = this.valueC;
data['value_d'] = this.valueD;
return data;
}