toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowedCustomerTypes = this.allowedCustomerTypes;
final allowedRegions = this.allowedRegions;
final promotionalOrderTypes = this.promotionalOrderTypes;
return {
'allowedCustomerTypes': ?allowedCustomerTypes,
'allowedRegions': ?allowedRegions,
'promotionalOrderTypes': ?promotionalOrderTypes,
};
}