toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final fullRefund = this.fullRefund;
final itemBasedRefund = this.itemBasedRefund;
final proratedRefund = this.proratedRefund;
return {
'fullRefund': ?fullRefund,
'itemBasedRefund': ?itemBasedRefund,
'proratedRefund': ?proratedRefund,
};
}