toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final geotargetArea = this.geotargetArea;
final merchantId = this.merchantId;
final postalCodeArea = this.postalCodeArea;
final regionId = this.regionId;
final regionalInventoryEligible = this.regionalInventoryEligible;
final shippingEligible = this.shippingEligible;
return {
'displayName': ?displayName,
'geotargetArea': ?geotargetArea,
'merchantId': ?merchantId,
'postalCodeArea': ?postalCodeArea,
'regionId': ?regionId,
'regionalInventoryEligible': ?regionalInventoryEligible,
'shippingEligible': ?shippingEligible,
};
}