toJson method
Implementation
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['Code'] = this.code;
data['Name'] = this.name;
data['Description'] = this.description;
data['PaymentIntrucionsDoc'] = this.paymentIntrucionsDoc;
if (this.transactionFee != null) {
data['TransactionFee'] = this.transactionFee!.toJson();
}
return data;
}