toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['SessionId'] = this.sessionId;
data['TransactionId'] = this.transactionId;
data['ReferenceId'] = this.referenceId;
data['Via'] = this.via;
data['Channel'] = this.channel;
data['PaymentNo'] = this.paymentNo;
data['PaymentName'] = this.paymentName;
data['Total'] = this.total;
data['Fee'] = this.fee;
data['Expired'] = this.expired;
return data;
}